$(document).ready(function(){

    $("a.lokacija").fancybox(); 

							   
	
	$("ul#mainnav li").hover(
		  function () {
	  $(this).children("div").css("display","block");
	 }, 
		  function () {
	  $(this).children("div").css("display","none");
	 });	
	
	
	if ($.browser.msie) 
		{
  			$(function() {$('#tabs').tabs();
			$('#tabs').tabs('rotate', 5000, true);
		});
 	}
 	else {
 		 $(function() 
			{
				$('#tabs').tabs({ fx: { opacity: 'toggle' } });
				$('#tabs').tabs('rotate', 5000, true);
			});
		 
 	}
	
	
	$("select#order_bind_type option#order_bind_type1").click(function () {$(".vrstePlasticneSpirale").css("display","block");$(".vrsteZicaneSpirale, .vrsteTvrdogPoveza").css("display","none");});
	$("select#order_bind_type option#order_bind_type2").click(function () {$(".vrsteZicaneSpirale").css("display","block");$(".vrstePlasticneSpirale, .vrsteTvrdogPoveza").css("display","none");});
	$("select#order_bind_type option#order_bind_type3").click(function () {$(".vrsteTvrdogPoveza").css("display","block");$(".vrsteZicaneSpirale, .vrstePlasticneSpirale").css("display","none");});
	$("select#order_bind_type option#order_bind_type4").click(function () {$(".vrsteTvrdogPoveza, .vrsteZicaneSpirale, .vrstePlasticneSpirale").css("display","none");});
	
	$(".innerPageContent input, .innerPageContent textarea").focus(function () {$(this).css("background","#cfd0d0");});
	$(".innerPageContent input, .innerPageContent textarea").blur(function () {$(this).css("background","#dddede");});
	
	$(".innerPageContent a.orderCategory").toggle(
	function () {$(this).next("div.orderCategoryBox").css("display","block");$(this).addClass("activeOrderCategory");},
	function () {$(this).next("div.orderCategoryBox").css("display","none");$(this).removeClass("activeOrderCategory");});
	
	
});


