
$(function(){
	$('#sidebar-products img').each(function(){
		var img = new Image();
		var src = $(this).attr('src');
		var name = src.substring(0, src.lastIndexOf('.'));
		var ext = src.substring(src.lastIndexOf('.'));
		var hover = name+'-hover'+ext;
		img.src = hover;
		$(this).data('org', src);
		$(this).data('hover', hover);
	});
	
	$('#sidebar-products img').hover(
		function(){ $(this).attr('src', $(this).data('hover')); },
		function(){ $(this).attr('src', $(this).data('org')); }
	);
	
	$('#navigation li').hover(
		function(){ $(this).find('ul.flyout:first').show(); },
		function(){ $(this).find('ul.flyout:first').hide(); }
	);
});
