﻿$(function(){
	$("[srcover]").each( function(){
		$("<img>").attr("src", $(this).attr("srcover"));
		$(this).mouseover(function(){
			$(this).attr("src", $(this).attr("srcover"));
		}).mouseout(function(){
			$(this).attr("src", $(this).attr("srcorg"));
		}).attr("srcorg", $(this).attr("src"));
	});
	
	$("#nav li:has(ul), #catalog_nav li:has(ul)").mouseover(function(){
		$(this).find("ul").show().end()
		.find("img").attr("src", $(this).find("img").attr("srcover"));
	}).mouseout(function(){
		$(this).find("ul").hide().end()
		.find("img").attr("src", $(this).find("img").attr("srcorg"));
	}).find("ul").hide();
	
});