﻿$(document).ready(function()
{
	var element = "#" + $.cookie('menu');
	
	$(element).addClass("current");
	$(element).find("a:first").css("background-color","#ff9900");
	
	$("#menu>li>a").mouseover(function()
	{
		$(this).css("background-color","#ff9900");
		
	}).mouseout(function()
	{
		var parent = $(this).parent().attr("class");
		if(parent != "current") $(this).css("background-color","#0ca1d8");
		
	}).click(function()
	{
		var element = $(this).parent().attr("id");
		if(element != "forum") $.cookie('menu', element);
	});
	
	$(".podmeni a").click(function()
	{
		var element = $(this).parent().parent().parent().attr("id");
		$.cookie('menu', element);
	});
	
	$(".jednaagencija:last").css("min-width","635px");
});

