jQuery.noConflict();
jQuery.profileName = "";
jQuery.profilePic = "";
jQuery.profilePic = "";

jQuery(document).ready(function(){
	
	jQuery('.peopleUL li').hover(
       function () {
			jQuery.myIM = jQuery(this).find('img');
			jQuery.profilePic = jQuery.myIM.attr('src');
			
			jQuery.profilePicR = jQuery.profilePic.replace('.jpg','_r.jpg')
			jQuery.myIM.attr('src', jQuery.profilePicR);
			jQuery(this).css('cursor', 'pointer');
			
			jQuery(this).find('h3').css('fontWeight', '800');
			jQuery(this).animate({paddingLeft: '20px'}, 500, 'swing');
			jQuery(this).find('p').animate({opacity:0, height: 'hide'}, 1);
			jQuery(this).find('p').load('images/people/profileTXT/' + jQuery(this).find('img').attr('alt').replace(' ', '_') + '.txt').animate({opacity: 1,height: 'show'}, 500);

;

		  
      }, 
      function () {
		 jQuery.myIM.attr('src', jQuery.profilePic);
		 jQuery(this).find('h3').css('fontWeight', '100');
		 jQuery(this).animate({paddingLeft: '0'}, 100);
			jQuery(this).find('p').animate({opacity:0, height: 'hide'}, 1000);
      }
    );
	
	jQuery('.bsEmail').click(function(){window.open('mailto:bluestonesmusic@btinternet.com?subject=Blusestone compilation and songbook pre-order');});
	
	jQuery('#jukebox').load('js/soundcloud.txt');
	
	jQuery('#topicList table tr:even').addClass('even');
	jQuery('#topicList table tr:odd').addClass('odd');
	
	

});