$(document).ready(function() {
	
	$("#head_right .selected .selected_wrap").append($("#head_right ul .sel_lang a").html());
	
	$("#head_right .selected").toggle(function() {
		$("#head_right ul").stop(true, true).slideDown();
	}, function() {
		$("#head_right ul").stop(true, true).slideUp();
	});
	
	$("#head_right ul li").hover(function() {
		$(this).addClass("hover");
	}, function() {
		$(this).removeClass("hover");
	});
	
	Cufon.replace('.cufon, .nav li, .big, .small', {
		textShadow: '#fff 0px 1px',
		hover: true
	});
});
