$(document).ready( function() {
        // focus element on load
        $(".autofocus").focus();
	$("#changeSearch").bind("click", function() {
		$("#advanced_search").toggle();
		var src = $("#arrow").attr("src");
		if (src == "/public/images/front/arrow_down.gif") {
			$("#arrow").attr("src", "/public/images/front/arrow_up.gif");
		} else {
			$("#arrow").attr("src", "/public/images/front/arrow_down.gif");
		}
	});
	$("#button_advanced_search").bind("click", function() {
		$("#advanced_search").toggle();
		var src = $("#arrow").attr("src");
		if (src == "/public/images/front/arrow_down.gif") {
			$("#arrow").attr("src", "/public/images/front/arrow_up.gif");
		} else {
			$("#arrow").attr("src", "/public/images/front/arrow_down.gif");
		}
	});
	$("#lang_menu").bind("mouseenter", function(e) {
		$("#enflag").show("fast");
		$("#bgflag").show("fast");
		$("#ruflag").show("fast");
		$(this).css("height", "34%");
	});

	$("#lang_menu").bind("mouseleave", function(e) {
		$(".hiddenflag").hide("fast");
		$(this).css("height", "11%");
	});
});
