// JavaScript Document
$(function()
{
	
	$(".sidebar_content .box .b2:first").addClass("first"); 
    $(".sidebar_content .box .b2:last").addClass("last"); 
	
	$(".sidebar_content .strelica_desno").click(function()
	{
		if($(":animated").size()==0)
		{
			var active = $(".sidebar_content .box .b2.active");		
			active.find("p.fotke").fadeOut(170);
			
			if( active.hasClass("last") )
			{
				$(".sidebar_content .box .b2.first").css({ "left" : "-500px", "display" : "block" }).animate({ "left" : "0"}, 600).addClass("active")
				.find("p.fotke").css({"display" : "block", "opacity" : "0" }).animate({ "opacity" : "0" }, 400).animate({ "opacity" : "1" }, 200);
			}
			else
			{
				active.next().css({ "left" : "-500px", "display" : "block" }).animate({ "left" : "0"}, 600).addClass("active")
				.find("p.fotke").css({"display" : "block", "opacity" : "0" }).animate({ "opacity" : "0" }, 400).animate({ "opacity" : "1" }, 200);
			}
			active.animate({ "left" : "500px" }, 600, function(){ $(this).removeClass("active") });
		}
		return false;
	})
	
	$(".sidebar_content .strelica_lijevo").click(function()
	{
		if($(":animated").size()==0)
		{		
			var active = $(".sidebar_content .box .b2.active");		
			active.find("p.fotke").fadeOut(170);
			
			if( active.hasClass("first") )
			{
				$(".sidebar_content .box .b2.last").css({ "left" : "500px", "display" : "block" }).animate({ "left" : "0"}, 600).addClass("active")
				.find("p.fotke").css({"display" : "block", "opacity" : "0" }).animate({ "opacity" : "0" }, 400).animate({ "opacity" : "1" }, 200);
			}
			else
			{
				active.prev().css({ "left" : "500px", "display" : "block" }).animate({ "left" : "0"}, 600).addClass("active")
				.find("p.fotke").css({"display" : "block", "opacity" : "0" }).animate({ "opacity" : "0" }, 400).animate({ "opacity" : "1" }, 200);
			}
			active.animate({ "left" : "-500px" }, 600, function(){ $(this).removeClass("active") });
		}
		return false;
		
	})
	
	if (document.images)
	{
		preload_image = new Image(932,255); 
		preload_image.src="design/header_o_nama.jpg";
		
		preload_image = new Image(932,255); 
		preload_image.src="design/header_ponuda.jpg";
		
		preload_image = new Image(932,255); 
		preload_image.src="design/header_wellness.jpg";
		
		preload_image = new Image(932,255); 
		preload_image.src="design/header_galerija_slika.jpg";
	  
		preload_image = new Image(932,255); 
		preload_image.src="design/header_zanimljivosti.jpg";
		
		preload_image = new Image(932,255); 
		preload_image.src="design/header_kontakt.jpg";
	}

})
