jQuery.noConflict();


jQuery(document).ready(function(){ 
 
  jQuery('.boxgrid.caption').hover(function(){  
          jQuery(".cover", this).stop().animate({top:'174px'},{queue:false,duration:160});  
      }, function() {  
          jQuery(".cover", this).stop().animate({top:'220px'},{queue:false,duration:160});  
      });  
});
  
function mellerpic(picURL, pageURL, myID) {
  existingURL = jQuery('#artistimage').attr("src");
  if (existingURL != picURL) {
    jQuery('#artistimage').stop(1,0).attr("src", picURL).fadeTo("fast",1);   
    jQuery('#artistpage').attr("href",pageURL);
    jQuery(myID).siblings().removeClass("activeartist");
    jQuery(myID).addClass("activeartist");
  }
}

