$(window).load(function() {		
	$('.links').each(function(i) {
		$(this).bind("mouseleave",function() { 
			$(this).children('.linkResizedIcon').fadeOut('fast'); 
		});
			
		$(this).bind("mouseenter",function() { 
			$(this).children('.linkResizedIcon').fadeIn('fast'); 
		});
	});
	
	$('.slinks').each(function(i) {
		$(this).bind("mouseleave",function() { 
			$(this).children('.slinkResizedIcon').fadeOut('fast'); 
		});
			
		$(this).bind("mouseenter",function() { 
			$(this).children('.slinkResizedIcon').fadeIn('fast'); 
		});
	});
	
	$('.slinks2').each(function(i) {
		$(this).bind("mouseleave",function() { 
			$(this).children('.slinkResizedIcon2').fadeOut('fast'); 
		});
			
		$(this).bind("mouseenter",function() { 
			$(this).children('.slinkResizedIcon2').fadeIn('fast'); 
		});
	});
	
	$('.catnav .menuparent').mouseover(function() {
		$(this).children('.show-pr').css('visibility','visible');
	})
	$('.catnav .menuparent').mouseout(function() {
		$(this).children('.show-pr').css('visibility','hidden');
	})
	
});