$(document).ready(function() {
	//$("ul#menu li").hover(function(event) {
	//	$("ul#menu li").removeClass('rozwin');
	//	$(this).addClass('rozwin');
	//  if ($(this).children("ul").length) {event.preventDefault();}
	//  $("ul#menu li.rozwin ul").delay(200).slideToggle();
	//  });
	
	$('#promocje').cycle({
			//fx: 'scrollDown', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
			fx: 'fade', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
			timeout: 9000
		});	
	$('#start').hide(); 		
	$('#stop').click(function() { 
    	$('#promocje').cycle('pause');
    	$(this).hide();
    	$('#start').fadeIn(); 
	});	
	$('#start').click(function() { 
    	$('#promocje').cycle('resume');
    	$(this).hide();
    	$('#stop').fadeIn(); 
	});	
	var promoCount = $('#promocje div').length;
	if (promoCount <= 1) {
		$('#stop').hide();
	}
	
	$("ul#menu li").hoverIntent (
		function () {
    		$(this).children("ul").slideDown()
  		},
  		function () {
    		$(this).children("ul").slideUp()
  		});		
				   
    $('#mycarousel').jcarousel({
		 auto:4,
        scroll:1,
        wrap: 'circular'
	 });	
	
	$(".scroll").click(function(event){
		//prevent the default action for the click event
		event.preventDefault();

		//get the full url - like mysitecom/index.htm#home
		var full_url = this.href;

		//split the url by # and get the anchor target name - home in mysitecom/index.htm#home
		var parts = full_url.split("#");
		var trgt = parts[1];

		//get the top offset of the target anchor
		var target_offset = $("#"+trgt).offset();
		var target_top = target_offset.top;

		//goto that anchor by setting the body scroll top to anchor top
		$('html, body').animate({scrollTop:target_top}, 1000);
	});	
	
	$(function() {
		// Use this example, or...
		$('a[rel*=lytebox]').lightBox(); // Select all links that contains lightbox in the attribute rel
	});	
	
	
});
