$(document).ready(function(){
	$('#shows .entry').load('http://www.myspace.com/jamieflegg .eventsList', function(){
		if ($('.section').length){
			//$('li.moduleItem:not(:eq(0)):not(:eq(1)):not(:eq(2)):not(:eq(3))').remove();
		}
		//$(this).find('.moduleHead').remove();
		//$(this).find('.toolbar').remove();
	});
	
	//$('#mainPhoto img').width('720px');
	
	
	$('#social a').mouseenter(function(){
		$(this).css('opacity',0.8);
	}).mouseleave(function(){
		$(this).css('opacity',1);
	});
	
	var curVal;
	$('#emailList input').focus(function(){
		if ($(this).val().trim() == '' || $(this).val().trim() == 'email@example.com'){
			$(this).val('').css('color','#333');
		}else{
			$(this).css('color','#333');
		}
	}).blur(function(){
		if ($(this).val().trim() == '' || $(this).val().trim() == 'email@example.com'){
			$(this).val('email@example.com').css('color','#999');
		}else{
			$(this).css('color','#999');
		}
	});
	
	$('#videoQueue a').mouseenter(function(){
		$(this).css('opacity',0.9);
	}).mouseleave(function(){
		$(this).css('opacity',1);
	}).click(function(e){
		e.preventDefault();
		$('#videoBox iframe').attr('src','http://www.youtube.com/embed/' + $(this).attr('href') + '?hd=1');
		$('#videoBox h2').text($(this).find('img').attr('alt'));
	});
	
	$('#photoQueue a').mouseenter(function(){
		$(this).css('opacity',0.9);
	}).mouseleave(function(){
		$(this).css('opacity',1);
	}).click(function(e){
		e.preventDefault();
		$('#mainPhoto img').attr({
			src: $(this).find('img').attr('src').replace('/thumbs', ''),
			alt: $(this).find('img').attr('alt')
		}).next('p').text($(this).find('img').attr('alt'));
	});
	
	$('a#launchAudioPlayer').click(function(){
		window.open ("player.php","mywindow","menubar=1,resizable=1,width=530,height=295");
	});
	
	$('#audioPlayer a').click(function(e){
		e.preventDefault();
		AudioPlayer.embed("player", {  
		    soundFile: $(this).attr('href'),
		    titles: $(this).attr('title'),  
		    artists: "Jamie Flegg"  
		});
	});
});

