/////меню Up/////
jQuery(function() {

	jQuery("#topnav li").prepend("<span></span>"); //Throws an empty span tag right before the a tag

	jQuery("#topnav li").each(function() { //For each list item...
		var linkText = $(this).find("a").html(); //Find the text inside of the <a> tag
		$(this).find("span").show().html(linkText); //Add the text in the <span> tag
	}); 

	jQuery("#topnav li").hover(function() {	//On hover...
		$(this).find("span").stop().animate({
			marginTop: "-30" //Find the <span> tag and move it up 60 pixels
		}, 250);
	} , function() { //On hover out...
		$(this).find("span").stop().animate({
			marginTop: "0"  //Move the <span> back to its original state (0px)
		}, 250);
	});
});

/////for photo/////
jQuery(function() {
	jQuery("a[class='cboxElement']").colorbox({maxHeight:"98%"});
});

/////меню Left/////
jQuery(function() {
    // добавить обработчик события toggle
    jQuery('#egLeft li').hover(
        function() {
            jQuery(this).find('div:first').stop(true, true);			
            jQuery(this).find('div:first').show('slow');
        },
        function() {
			jQuery(this).find('div:first').hide('fast');
        }
    );

});


