$(document).ready(function(){
	$('.category_link').hover(function(){
		$('.placeholder', this).attr('src', $('.active_pic', this).text() );
	}, 
	function(){
		$('.placeholder', this).attr('src', $('.unactive_pic', this).text() );
	});
	
	
//	var prelod = ['image1.gif', 'image2.gif'];
//	$.preloadImages(preload);
//	 
//	$.preloadImages('image1.gif', 'image2.gif');
//	 
//	 
//	jQuery.preloadImages = function() {
//		var a = (typeof arguments[0] == 'object')? arguments[0] : arguments;
//		for(var i = a.length -1; i > 0; i--) {
//			jQuery("<img>").attr("src", a[i]);
//		}
//	}
//	
	
	
});