/* Author: 

*/

/*FancyBox*/
$(document).ready(function() {
		$('.fancybox').fancybox({
		arrows:true,
		});	
	});

/*Home Slider*/
jQuery(document).ready(function(){
	jQuery('#slider-nav a').hover(function(){
		var name=jQuery(this).attr('title');
		jQuery('img.visible').removeClass('visible');
		jQuery('img.'+name).addClass('visible');
		},function(){
	})
});
/*Products Accordian*/
	$(function() {
		$( "#accordion" ).accordion({
			autoHeight: false
		});
	});

