// Artist DropDown Menu

$(function() {
			
			jQuery('.alphabet li').click(function(e) {
				var id = jQuery(this).attr('id');
				jQuery('.dropDownBox').remove();		
				var html = '<div class="dropDownBox"><div class="dropDownHeader"></div>';
				html += $('#' + id + 'letters').html();
				html += '<div class="dropDownFooter"></div></div>';
				
				jQuery('#body').append(html).children('.dropDownBox').hide().slideDown(400)
				.css('top', e.pageY + -410).css('left', e.pageX + 5)
							   .hover(
								  function() {
									  jQuery('.dropDownBox').show()
								  },
								  function() {
									  jQuery('.dropDownBox').slideUp(400);
							   });
			});
		});
		