jQuery.noConflict();
jQuery(document).ready(function($) { //this says $ is a variable

			 
				//Caption Sliding (Partially Hidden to Visible)
				$('.product.caption').hover(function(){
					$(".cover", this).stop().animate({top:'160px'},{queue:false,duration:160});  
						
				}, function() {
					$(".cover", this).stop().animate({top:'328px'},{queue:false,duration:160});
					 	
				});
				
				
			
		 
			}); //end document ready functions
