$(document).ready(function(){

	$("a.single").fancybox({
		overlayShow			: false,
		zoomSpeedIn			: 600,
		zoomSpeedOut		: 500,
		easingIn			: 'easeOutBack',
		easingOut			: 'easeInBack'
	});
	
	$("#accordion").accordion({
		event					: "click",
		header					: "a.accheader",
		autoHeight				: false,
		active					: '.activemenu',
		collapsible				: true
	});
	
	$('#coda-colecciones').codaSlider({
		dynamicArrows: false,
		dynamicTabs: false
	});
	
	$('#senfort-textoscroll').jScrollPane();
	
	$('#distribuidores-textoscroll').jScrollPane();
	
	$('#noticias-textoscroll').jScrollPane();
	
	$('#largo').jScrollPane();
	
	$("img.rollover").hover(
		function()
		{
			this.src = this.src.replace("_off","_on");
		},
		function()
		{
			this.src = this.src.replace("_on","_off");
		}
	);
	
	$('img.animateImage').hide().each(function() {
	     if (this.complete)
	        $(this).fadeIn(4000);
	     else
	        $(this).load( function() { $(this).fadeIn(4000); });
	});
});