﻿jQuery(document).ready(function($){

	
	// search_form_top
	var sval = '';
	$(".search_form").find("input:text").focus(function(){
		if($(this).val() != '' || $(this).val() != ' ') {
			sval = $(this).val();
			$(this).val(' ');
		}
	});
	$(".search_form").find("input:text").blur(function(){
		if($(this).val() == "" || $(this).val() == " ") {
			$(this).val(sval);
		}
	});
	//end: search_form_top
	// topmenu
	$("#topmenu").find("a").hover(
		function(){
			$(this).addClass("hover");
		},
		function(){
			$(this).removeClass("hover");
		}
	);
	//end: topmenu
	// lang
	$(".more_lang").hover(
		function(){
			$(this).children(".more").slideDown("fast",function(){
				$("#a").css({visibility: 'visible'});
			});
		},
		function(){
			$("#a").css({visibility: 'hidden'});
			$(this).children(".more").slideUp("fast");
		}
	);
	//end: lang
});

