
jQuery(document).ready(function($){


	// image switch navigation
	jQuery("#catbrowse a").hover(function() {
		jQuery(this).next("em").animate({opacity: "show", top: "-55"}, "slow");
	}, function() {
		jQuery(this).next("em").animate({opacity: "hide", top: "-65"}, "fast");
	});

	jQuery("#catbrowse a").hover(function(e){
			jQuery("#ImgObject").ImageStop(true,true);
			jQuery("#ImgObject").ImageSwitch
			({	Type:"FadeIn", 
				NewImage:$(this).attr("rel"),
				EffectOriginal: false,
				Speed: 500});
			e.preventDefault();
		});



	// columize lists	
    jQuery('.listcol').columnizeList({cols:2,constrainWidth:1});

}); // End Ready Doc

