function make_popups(){
	for(var i = 1; i <= 31; i++){
		if($("#calendar_day_"+i)){
			$("#calendar_day_"+i).unbind("mouseenter");
						
			$("#calendar_day_"+i).mouseenter(function(){
				var html = $('#'+this.id+"_data").html();
				if(html.length > 0){
					$("#calendar_day_info").stop(true,true);
					$("#calendar_day_info").css({
						display: 'block',
						top: $(this).position().top+$(this).height()-10,
						left: $(this).position().left+$(this).width()-5
					});
					$("#calendar_day_info").html(html);
				}
				else{
					$("#calendar_day_info").fadeOut("normal");
				}
			});
		}
	}
	$(".filler").unbind("mouseenter");
	$(".header").unbind("mouseenter");
	$("#calendar_day_info").unbind("mouseleave");
			
	$(".filler").mouseenter(function(e){
		$("#calendar_day_info").fadeOut("fast");
	});
	$(".header").mouseenter(function(e){
		$("#calendar_day_info").fadeOut("fast");
	});
	$("#calendar_day_info").mouseleave(function(e){
		$("#calendar_day_info").fadeOut("fast");
	});
}

function setMenuImageOver(id){
	$("#"+id).css('z-index', 100);
	$("#"+id).css('background-position', '0 86px');
}

function setMenuImageOut(id){
	$("#"+id).css('z-index', 1);
	$("#"+id).css('background-position', '0 0');
}

function setGalleryImages(mark){
	$('#gallery_photos_scroll img').click(function(){
		$('#gallery_photos_scroll img').css('opacity', .4);
		$('#gallery_photos_scroll img').css('filter', 'alpha(opacity=40)');
		var a = this.src.match(/gallery\/(.+?)\/thumbnails\/(.+?)_resize/);
		$("#gallery_photo img").attr("src", 'images/gload.gif');
		$("#gallery_photo img").attr("style", 'width:54px;padding:220px 296px');
		var img = new Image();
		img.onload = function(){
			$("#gallery_photo").html('');
			$("#gallery_photo").append(img);
		}
		img.alt = 'Zjęcie';
		setTimeout(function(){img.src = 'images/gallery/'+a[1]+'/thumbnails/'+a[2]+'.jpg';},1);
		this.style.opacity = 1;
		this.style.filter = 'alpha(opacity=100)';
	});
	if(mark == true)
		$('#gallery_photos_scroll img:first').css('opacity', 1);
}

function createScroller(buttonId, scrollerId, direction, timeoutSpeed, scrollerJump, scrollerClickJump){
	var scroller = $('#'+scrollerId);
	scroller.scrollData = {};
	scroller.scrollData.scrollCurrent = 0;
	scroller.scrollData.scrollFunction = function(){
		return setTimeout(function(){
			scroller.scrollLeft(
				scroller.scrollLeft()+scroller.scrollData.scrollCurrent
			);
			if(scroller.scrollData.scrollCurrent != 0)
				scroller.scrollData.scrollFunction();
		}, timeoutSpeed);
	};
	
	$('#'+buttonId).mouseover(function(){
		scroller.scrollData.scrollCurrent = (direction == 'right'?scrollerJump:-scrollerJump);
		scroller.scrollData.scrollFunction();
	});
	
	$('#'+buttonId).mouseout(function(){
		scroller.scrollData.scrollCurrent = 0;
	});
	
	$('#'+buttonId).click(function(){
		scroller.animate({ 
				scrollLeft: scroller.scrollLeft() + (direction == 'right'?scrollerClickJump:-scrollerClickJump)
			}, "easeOutQuint"
		);
	});
}

function dotime(){ 
	theTime=setTimeout('dotime()',1000);
	d = new Date();
	dd= d.getDate()+100;
	mm= d.getMonth()+101;
	yy= d.getFullYear();
	dt=''+dd+mm+yy;
	hr= d.getHours()+100;
	mn= d.getMinutes()+100;
	se= d.getSeconds()+100;
	tot=''+hr+mn+se;
	document.dd1.src = '/images/clock/dg'+dt.substring(1,2)+'.gif';
	document.dd2.src = '/images/clock/dg'+dt.substring(2,3)+'.gif';
	document.mm1.src = '/images/clock/dg'+dt.substring(4,5)+'.gif';
	document.mm2.src = '/images/clock/dg'+dt.substring(5,6)+'.gif';
	document.yy1.src = '/images/clock/dg'+dt.substring(6,7)+'.gif';
	document.yy2.src = '/images/clock/dg'+dt.substring(7,8)+'.gif';
	document.yy3.src = '/images/clock/dg'+dt.substring(8,9)+'.gif';
	document.yy4.src = '/images/clock/dg'+dt.substring(9,10)+'.gif';
	document.hr1.src = '/images/clock/dg'+tot.substring(1,2)+'.gif';
	document.hr2.src = '/images/clock/dg'+tot.substring(2,3)+'.gif';
	document.mn1.src = '/images/clock/dg'+tot.substring(4,5)+'.gif';
	document.mn2.src = '/images/clock/dg'+tot.substring(5,6)+'.gif';
	document.se1.src = '/images/clock/dg'+tot.substring(7,8)+'.gif';
	document.se2.src = '/images/clock/dg'+tot.substring(8,9)+'.gif';
}

$(document).ready(function(){
	
	menu_opened = false;
	$("#slide_handler").mouseenter( function(){
		if(menu_opened == false){
			menu_opened = true;
			$("#slide_menu").animate({top:0}, {
				duration: 500, 
				easing: 'easeInOutQuad'
			});
		}
	});
	
	$("#slide_menu").mouseleave( function(){
		if(menu_opened == true){
			menu_opened = false;
			$("#slide_menu").stop(true,false);
			$("#slide_menu").animate({top:-160}, {
				duration: 600, 
				easing: 'easeOutCubic'
			});
		}
	});
	
	make_popups();
	$("#calendar_cnt").mouseleave(function(e){
		$("#calendar_day_info").fadeOut("fast");
	});
	
	$('#newsletter_box_img').mouseenter( function(){
		if(this.checked == true) 
			$('#newsletter_box_img').css('background-position', '-54px 0');
		else 
			$('#newsletter_box_img').css('background-position', '-36px 0');
	});
	$('#newsletter_box_img').mouseleave( function(){
		if(this.checked == true) 
			$('#newsletter_box_img').css('background-position', '-18px 0');
		else 
			$('#newsletter_box_img').css('background-position', '0 0');
	});
	$('#newsletter_box_img').click( function(){
		if(this.checked == true){
			this.checked = false;
			document.getElementById('newsletter_box').checked = false;
			$('#newsletter_box_img').css('background-position', '-36px 0');
		}
		else{
			this.checked = true;
			document.getElementById('newsletter_box').checked = true;
			$('#newsletter_box_img').css('background-position', '-54px 0');
		}
	});
	
	if(document.getElementById('newsletter_box') && document.getElementById('newsletter_box').checked == true){
		document.getElementById('newsletter_box_img').checked = true;
		$('#newsletter_box_img').css('background-position', '-18px 0');
	}
	
	$('#promocje_box_img').mouseenter( function(){
		if(this.checked == true)
			$('#promocje_box_img').css('background-position', '-54px 0');
		else
			$('#promocje_box_img').css('background-position', '-36px 0');
	});
	$('#promocje_box_img').mouseleave( function(){
		if(this.checked == true)
			$('#promocje_box_img').css('background-position', '-18px 0');
		else
			$('#promocje_box_img').css('background-position', '0 0');
	});
	$('#promocje_box_img').click( function(){
		if(this.checked == true){
			this.checked = false;
			document.getElementById('promocje_box').checked = false;
			$('#promocje_box_img').css('background-position', '-36px 0');
		}
		else{
			this.checked = true;
			document.getElementById('promocje_box').checked = true;
			$('#promocje_box_img').css('background-position', '-54px 0');
		}
	});
	
	if(document.getElementById('promocje_box') && document.getElementById('promocje_box').checked == true){
		document.getElementById('promocje_box_img').checked = true;
		$('#promocje_box_img').css('background-position', '-18px 0');
	}
	
	$('#aktualnosci_down_btn').click(function(){
		$('#aktualnosci_txt').animate({scrollTop: '+=' + 100 + 'px'}, 1000);
	});
	
	$('#aktualnosci_up_btn').click(function(){
		$('#aktualnosci_txt').animate({scrollTop: '-=' + 100 + 'px'}, 1000);
	});
	
	//$('#gallery_select_scroll img:first').css('opacity', 1);
	
	$('#gallery_select_scroll img').click(function(){
		$('#gallery_select_scroll img').css('opacity', .4);
		$('#gallery_select_scroll1 img').css('opacity', .4);
        $.getJSON('index.php?action=gallery&gallery='+this.alt.match(/Galeria-(\d+)/)[1], function(data){
        	$("#gallery_photos_scroll table tr").empty();
			$.each(data.thumbnails, function(i,thumb){
				$("<img>").attr("src", thumb.url).appendTo("#gallery_photos_scroll table tr").wrap('<td>');
			});
			$("#gallery_photo img").attr("src", data.images[0]);
			$('#gallery_photos').scrollLeft(0);
			setGalleryImages(true);
        });
        this.style.opacity = 1;
        this.style.filter = 'alpha(opacity=100)';        
	});
	
	$('#gallery_select_scroll1 img').click(function(){
		$('#gallery_select_scroll img').css('opacity', .4);
		$('#gallery_select_scroll1 img').css('opacity', .4);
        $.getJSON('index.php?action=gallery&gallery='+this.alt.match(/Galeria-(\d+)/)[1], function(data){
        	$("#gallery_photos_scroll table tr").empty();
			$.each(data.thumbnails, function(i,thumb){
				$("<img>").attr("src", thumb.url).appendTo("#gallery_photos_scroll table tr").wrap('<td>');
			});
			$("#gallery_photo img").attr("src", data.images[0]);
			$('#gallery_photos').scrollLeft(0);
			setGalleryImages(true);
        });
        this.style.opacity = 1;
        this.style.filter = 'alpha(opacity=100)';        
	});
	
	setGalleryImages(false);
	
	createScroller('select_right', 'gallery_select', 'right', 50, 3, 400);
	createScroller('select_left', 'gallery_select', 'left', 50, 3, 400);
	
	createScroller('select_right1', 'gallery_select1', 'right', 50, 3, 400);
	createScroller('select_left1', 'gallery_select1', 'left', 50, 3, 400);
	
	createScroller('photos_right', 'gallery_photos', 'right', 30, 5, 400);
	createScroller('photos_left', 'gallery_photos', 'left', 30, 5, 400);
	
	$('#login_form_text').keypress(function (e) {
		if(e.which == 13){
			document.getElementById('haslo_form_text').focus();
		}
	});
	
	$('#haslo_form_text').keypress(function (e) {
		if(e.which == 13){
			document.getElementById('logowanie_form').submit();
		}
	});
	
	$('#zaloguj_btn').click(function(e) {
		document.getElementById('logowanie_form').submit();
	});
	
	$('#zaloguj_btn').mouseover(function(e) {
		$('#zaloguj_btn').css('background-position', '0 127px');
	});
	
	$('#zaloguj_btn').mouseout(function(e) {
		$('#zaloguj_btn').css('background-position', '0 0');
	});
	
	$('#remember_box_img').mouseenter( function(){
		if(this.checked == true)
			$('#remember_box_img').css('background-position', '-54px 0');
		else
			$('#remember_box_img').css('background-position', '-36px 0');
	});
	$('#remember_box_img').mouseleave( function(){
		if(this.checked == true)
			$('#remember_box_img').css('background-position', '-18px 0');
		else
			$('#remember_box_img').css('background-position', '0 0');
	});
	$('#remember_box_img').click( function(){
		if(this.checked == true){
			this.checked = false;
			document.getElementById('zapamietaj_box').checked = false;
			$('#remember_box_img').css('background-position', '-36px 0');
		}
		else{
			this.checked = true;
			document.getElementById('zapamietaj_box').checked = true;
			$('#remember_box_img').css('background-position', '-54px 0');
		}
	});
	
	$('#wyslij_btn').click(function(e) {
		document.getElementById('logowanie_form').submit();
	});
	
	$('#wyslij_btn').mouseover(function(e) {
		$('#wyslij_btn').css('background-position', '1px 130px');
	});
	
	$('#wyslij_btn').mouseout(function(e) {
		$('#wyslij_btn').css('background-position', '0 0');
	});
	
	$('#paintball_box_img').click( function(){
		if(this.checked == true){
			this.checked = false;
			document.getElementById('paintball_box').checked = false;
			document.getElementById('paintball_select').disabled = true;
			$('#paintball_box_img').css('background-position', '0 0');
		}
		else{
			this.checked = true;
			document.getElementById('paintball_box').checked = true;
			document.getElementById('paintball_select').disabled = false;
			$('#paintball_box_img').css('background-position', '-19px 0');
		}
	});
	
	$('#kajaki_box_img').click( function(){
		if(this.checked == true){
			this.checked = false;
			document.getElementById('kajaki_box').checked = false;
			document.getElementById('kajaki_select').disabled = true;
			$('#kajaki_box_img').css('background-position', '-38px 0');
		}
		else{
			this.checked = true;
			document.getElementById('kajaki_box').checked = true;
			document.getElementById('kajaki_select').disabled = false;
			$('#kajaki_box_img').css('background-position', '-57px 0');
		}
	});
	
	$('#grill_box_img').click( function(){
		if(this.checked == true){
			this.checked = false;
			document.getElementById('grill_box').checked = false;
			document.getElementById('grill_select').disabled = true;
			$('#grill_box_img').css('background-position', '-76px 0');
		}
		else{
			this.checked = true;
			document.getElementById('grill_box').checked = true;
			document.getElementById('grill_select').disabled = false;
			$('#grill_box_img').css('background-position', '-95px 0');
		}
	});
	
	$('#zarezerwuj_div img').mouseover(function(){
		$('#zarezerwuj_div img').css('background-position', '0 92px');
	});
	
	$('#zarezerwuj_div img').mouseout(function(){
		$('#zarezerwuj_div img').css('background-position', '0 0');
	});
	
	$('#zarezerwuj_div img').click(function(){
		document.getElementById('rezerwacja_form').submit();
	});
	
	$('#zarejestruj_btn').mouseover(function(){
		$('#zarejestruj_btn').css('background-position', '210px 0');
	});
	
	$('#zarejestruj_btn').mouseout(function(){
		$('#zarejestruj_btn').css('background-position', '0 0');
	});
	
	$('#zarejestruj_btn').click(function(){
		document.getElementById('rejestracja_form').submit();
	});
	
	$('#zapisz_btn').mouseover(function(){
		$('#zapisz_btn').css('background-position', '210px 0');
	});
	
	$('#zapisz_btn').mouseout(function(){
		$('#zapisz_btn').css('background-position', '0 0');
	});
	
	$('#zapisz_btn').click(function(){
		document.getElementById('rejestracja_form').submit();
	});
	
	$('#dodaj_btn').click(function(e) {
		document.getElementById('komentarze_form').submit();
	});
	
	$('#dodaj_btn').mouseover(function(e) {
		$('#dodaj_btn').css('background-position', '1px 74px');
	});
	
	$('#dodaj_btn').mouseout(function(e) {
		$('#dodaj_btn').css('background-position', '0 0');
	});
	
	//$('#oferta_wrap').css('height', $('#oferta_wrap span').height() + 120 + 'px');
	
	dg0 = new Image();dg0.src = "/images/clock/dg0.gif";
	dg1 = new Image();dg1.src = "/images/clock/dg1.gif";
	dg2 = new Image();dg2.src = "/images/clock/dg2.gif";
	dg3 = new Image();dg3.src = "/images/clock/dg3.gif";
	dg4 = new Image();dg4.src = "/images/clock/dg4.gif";
	dg5 = new Image();dg5.src = "/images/clock/dg5.gif";
	dg6 = new Image();dg6.src = "/images/clock/dg6.gif";
	dg7 = new Image();dg7.src = "/images/clock/dg7.gif";
	dg8 = new Image();dg8.src = "/images/clock/dg8.gif";
	dg9 = new Image();dg9.src = "/images/clock/dg9.gif";
	dgc = new Image();dgc.src = "/images/clock/dgc.gif";

	dotime();
	
	if($('#placeholder').crossSlide)
	$('#placeholder').crossSlide({
	  fade: 1
	}, [
	  {
		src:  '/images/gallery/Przepompownia_Komercja/thumbnails/aP5010078.jpg',
		from: '80% 60% .5x',
		to:   '20% 0% .7x',
		time: 3
	  }, {
		src:  '/images/gallery/Komercja/thumbnails/DSC03730.jpg',
		from: '10% 40% .5x',
		to:   '90% 60% .7x',
		time: 3
	  }, {
		src: '/images/gallery/Kajki_Komercja/thumbnails/Obraz_250.jpg',
		from: '40% 80% .5x',
		to:   '60% 30% .7x',
		time: 3
	  }, {
		src: '/images/gallery/Kajki_Komercja/thumbnails/Obraz_264.jpg',
		from: '80% 50% .5x',
		to:   '10% 30% .45x',
		time: 3
	  }, {
		src: '/images/gallery/Events_Oferta/thumbnails/paralotnia_paintballhunters.pl_eventDSC_1563.jpg',
		from: '10% 20% .3x',
		to:   '80% 60% .35x',
		time: 3
	  }, {
		src: '/images/gallery/Event_Oferta/thumbnails/park_linowy_paintballhunters.pl_event_oglne_zdjcia_parku_linowego_20100504_1357170170.jpg',
		from: '30% 70% .4x',
		to:   '80% 30% .45x',
		time: 3
	  }, {
		src: '/images/gallery/Grudze_Las/thumbnails/DSC01520.jpg',
		from: '100% 50% .5x',
		to:   '0% 30% .45x',
		time: 3
	  }
	]);
});

