function openDrop(lang){
	$("#divDrop").show();
	$(".dropLien").find("img").attr("src", "images/down_arrow_active"+lang+".png");
	$("#margR39").css("margin-top", "-1px");
}

function closeDrop(lang){
	$("#divDrop").hide();	
	$(".dropLien").find("img").attr("src", "images/down_arrow_not_active"+lang+".png");
	$("#margR39").css("margin-top", "0px");
}




$(document).ready(function(){
	$(".dropLien").bind('mouseover', function(){
			openDrop(phpLang);
	});
	
	$(".dropLien").bind('mouseout', function(){
			closeDrop(phpLang);
	});
	$("#divDrop").bind('mouseover', function(){ 
			openDrop(phpLang);
	})
	$("#divDrop").bind('mouseout', function(){
			closeDrop(phpLang);
	});
	$("#header_interior li").bind('mouseover', function(){
		$(this).css("margin-top", "-1px");							   
	});
	$("#header_interior li").bind('mouseout', function(){
		$(this).css("margin-top", "0px");							   
	})	
})
