// JavaScript Document

$(document).ready(function() {
	// fix to remove numbers from slider
	$('div#mozaic a span').text(' ');
	
	// fix to fix background
	var $height = $('.round-top').height();
	var $block = 46;
	var $rest = $height%$block;
	var $final = $height - $rest;
	var $final = $final + $block*1;
	
	$('.round-top').css('height',$final);
	
	$windowWidth = window.innerWidth;
	if ($windowWidth < 960) {
		$('body').css('overflow-x', 'visible');
	}
	
	$ieWindowWidth = document.documentElement.clientWidth;
	if ($ieWindowWidth < 960) {
		$('body').css('overflow-x', 'visible');
	}

	// sliders publicidad
	$(document).ready(function() {
			$('#slider-0').jdSlider({ 
				width  : 518,
				height : 391,
				transitions : 'slideOver',
				showNavigation : true,
				showSelectors : true
			});
		});
		
		$(document).ready(function() {
			$('#slider-1').jdSlider({ 
				width  : 420,
				height : 170,
				transitions : 'slideOver',
				showNavigation : true,
				showSelectors : true
			});
		});
		
		$(document).ready(function() {
			$('#slider-2').jdSlider({ 
				width  : 420,
				height : 170,
				transitions : 'slideOver',
				showNavigation : true,
				showSelectors : true
			});
		});
	
	
	
	
	
	
	
});

