/* Start Java Init */
function ReloadCapcha () 
{
var rndval = new Date().getTime(); 
document.getElementById('captcha').src='../antibot.php?rndval='+ rndval;
}

$(document).ready(function(){
						   
    /* Init Sound */
	$('"ul.topnav li').hover(function(){
		playSound('sound1');				 
	},function(){
		$(this).stop();			 
	})		   
						   
 
	$("ul.topnav li").hover(function() { //When trigger is clicked...
		$(this).find("ul.subnav").slideDown('fast').show(); //Drop down the subnav
 
        $(this).find("a.top_link").animate({color: '#ffffff'}, {duration:0}); //Light font color  */

		$(this).hover(function() {
		}, function(){	
			$(this).find("ul.subnav").slideUp('slow'); //When the mouse hovers out of the subnav, move it back up
		    $(this).find("a.top_link").animate({color: '#0a5c8f'}, {duration:0}); 
 
		});
 
	});


	$('ul.topnav li.main')
		.css( {backgroundPosition: "0 0"} )
		.mouseover(function(){
			$(this).stop().animate({backgroundPosition:'-150px 0'}, {duration:300})
 
		})
		.mouseout(function(){
			$(this).stop().animate({backgroundPosition:'-300px 0'}, {duration:200, complete:function(){
				$(this).css({backgroundPosition: "0 0"})
 
			}})
		})


	$("ul.topnav a.top_link").hover(function() { //When trigger is clicked...	
			$(this).animate({color: '#ffffff'}, {duration:0}); //Light font color 
	});	
	
 
	$("ul.subnav li").hover(function() { //When trigger is clicked...	
       $(this).find("img").fadeTo("slow", 0.75);
	});	
 
 
	$("ul.subnav li").mouseout(function() { //When trigger is clicked...	
       $(this).find("img").fadeTo("slow", 1);
	});	
	
 
});
