// JavaScript Document
$(document).ready(function(){
	$('#menu a')
	.css( {backgroundPosition: "0px -94px"} )
	.mouseover(function(){
			$(this).stop().animate({backgroundPosition:"(0px 0px)"}, {duration:400})
	})
	.mouseout(function(){
		if($(this).attr("id") != "active"){
		$(this).stop().animate({backgroundPosition:"(0px -94px)"}, {duration:200, complete:function(){}
		})
		}		
	});
	
	$('#menu a').each(function(i){
		if($(this).attr("id") == "active"){
			$(this).css( {backgroundPosition: "0px 0px"} );
		}					   
	});
	
	
	
	
	$('.box').facebox({
        loading_image : 'loading.gif',
        closeImage   : 'aplication/webroot/js/box/closelabel_en.jpg'
    });

});
