$(document).ready(function() {	   
  $("#q").focus(function() {
    if($(this).val() == 'Поиск товаров') $(this).val('');
});
  $("#q").blur(function() {
	if($(this).val() == '')$(this).val('Поиск товаров');
});
  $("#menuSite li").mousemove(function() {
	$(this).css("background-color", "#e8ba82");							   
});
  $("#menuSite li").mouseout(function() {
	$(this).css("background-color", "");							   
});
  $("#logo").click(function(){
		window.location.href = 'http://germes-shop.ru/';					
  });
});
