$(document).ready(function()
{
    /*** 1027 * 768 HACK ***/
	$(document).scrollLeft( 96 );
	
	if (screen.width == 1024) {
		$('#top_menu').css('width', '119%');
	}
	
	/*** END OF HACK ***/
	
	$('#nav ul li').hover(
		function() { $(this).children("ul").fadeIn(300); },
		function() { $(this).children("ul").fadeOut(300);
	}); 

   /*** COLORBOX ***/
  $('a.modal_form').colorbox({
    innerWidth: '764px',
    innerHeight: '618px',
    close: 'zatvoriť okno',
    iframe: true,
    scrolling: false,
    overlayClose: false
  });
  
  $('a.colorbox').colorbox({
    overlayClose: true,
    close: 'zatvoriť',
  });
  
  /*** CarouFredSel ***/
  
  	 $("#rotate").carouFredSel({
		auto : true,
		direction: "top",
		items : 1,
		pagination	: "#rotate_p",
		duration		: 1200,
		pauseDuration	: 1,
		scroll : {
			items			: 1,
			fx			: 'crossfade',
			duration		: 1000
		},
		auto : {
			pauseDuration	: 3000,
			pauseOnHover	: false
		}
	});

 
});




