jQuery.noConflict();
jQuery(document).ready(function(){
	jQuery('#crate').hover(
	      function () {
			jQuery('#crate').css("background-image","url(http://24kmilky.com/wp/wp-content/themes/24kM%202010/images/crateout.png)");
	        jQuery('#crate p').show();
	      }, 
	      function () {
	        jQuery('#crate').css("background-image","url(http://24kmilky.com/wp/wp-content/themes/24kM%202010/images/crate.png)");
			jQuery('#crate p').hide();
			});
	      }
	    );

