$(function(){
	  
        $('#artistsmenu').change(function(){
            var artistName = $(this).val();
			
			artistName = artistName.replace(" ","+");
		
			if(artistName != "Artists"){
				document.location.href = "/stock/" + artistName + "/";
			} else {
				
			//...
				
			}
			
          })
          .change();
		  		  
		
});

$(document).ready(function () {
    
	$('.artistOver').bind("mouseover", function(e){$('#hovername'+this.id).css("display","block");});
	$('.artistOver').bind("mouseleave", function(e){ $('#hovername'+this.id).css("display","none");});
	
});
