function mainmenu(){
$(" #nav ul ").css({display: "none"}); // Opera Fix
$(" #nav li").hover(function(){
		$(this).find('ul:first').css({visibility: "visible",display: "none"}).show(400);
		},function(){
		$(this).find('ul:first').css({visibility: "hidden"});
		});
}
 
function gornja() {
$(" #gornji-linkovi ul li").hover(function(){
                $(this).find('a').animate({ color: "#777" }, 300);
                },function(){
		$(this).find('a').animate({ color: "#fff" }, 300);
		});     
                
}

function sastrane() {
$(" #vijesti p a").hover (function(){
                $(this).animate({ color: "#777" }, 200);
                },function(){
		$(this).animate({ color: "#222" }, 200);
		});   
}


 $(document).ready(function(){
                mainmenu();
                gornja();
                sastrane();
});