function initHover()  {
	
	var section=jQuery("a.info");

	jQuery(section).hover(
	
	function (event){
		var content="#artist-info";
		jQuery(content).css({left: (event.pageX+20) +'px', top: (event.pageY-16) + 'px'});	
		jQuery(content).load("loader.php?type=info&nid="+jQuery(this).attr('id'));
		//jQuery(content).append("../scripts/loader.php?nid="+jQuery(this).attr('id'));
		jQuery(content).show();
		},
	function (event){
		var content="#artist-info";
		jQuery(content).html('');
		jQuery(content).hide();
		}			
   );
   

	 jQuery('body').click(function(event) {	   
	  if (jQuery(event.target).is("a.download")) {
		var content="#download-info";
		jQuery(content).css({left: (event.pageX+20) +'px', top: (event.pageY-16) + 'px'});		
		jQuery(content).show();
	   }; 
	  
	  if (jQuery(event.target).is("a.close")) {
	   var content="#download-info";
		jQuery(content).css({left: (event.pageX+20) +'px', top: (event.pageY-16) + 'px'});	   
	   jQuery(content).hide();
	   };
	 });


	jQuery("#q").blur(function(){
		if(this.value == '') 
		  jQuery("#q").attr("value","Search artist, event, album, song");
		});
	
	jQuery("#q").focus(function(){
		jQuery("#q").attr("value","");
		});

}
