$(document).ready(function(){
    $(".menu a.root").parent("li").each(function(){
        $(this).hover(function(){
            $(this).find("a.root").addClass("active");
            $(this).find("ul.sub_top").show();
        },function(){
            $(this).find("ul.sub_top").hide();
            $(this).find("a.root").removeClass("active");
        });
    });
    $('.slideshow').cycle({
		fx: 'fade' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
	});
    $("#story").each(function(){
        $(this).focus(function(){
            if($(this).val()=="поиск по сайту")$(this).val("");
        });
        $(this).blur(function(){
            if($(this).val()=="")$(this).val("поиск по сайту");
        });
    });
});
