$(document).ready(function(){
	// Menu Stuff
	$('a').click(function(){
		$(this).blur();
	});
	$('li').mouseover(function(){
		$(this).stop().animate({height:'150px'},{queue:false, duration:600, easing: 'easeOutBounce'});
	}).mouseout(function(){
		$(this).stop().animate({height:'50px'},{queue:false, duration:600, easing: 'easeOutBounce'});
	});
	// Toggle Resume Format
	$('#resClk').click(function(){
		$('#resumePDF').toggle();
		$('#resumeHTML').toggle();
	});
	// Hover Stuff
	$('.hover').mousemove(function(){
		var url = 'url(http://dl.dropbox.com/u/6223485/images/links/'+$(this).attr('imgname')+'.png)';
		$('#hoverdiv').show();
		$('#hoverdiv').css('background-image',url);
	}).mouseout(function(){
		$('#hoverdiv').hide();
	});
});

function imageItem(title,caption,path){
	document.write("<div class=\"imageElement\">");
	document.write("<h3>"+title+"</h3>");
	document.write("<p>"+caption+"</p>");
	document.write("<a href=\"#\" title=\"open image\" class=\"open\"></a>");
	document.write("<img src=\"http://dl.dropbox.com/u/6223485/photos/"+path+".jpg\" class=\"full\" />");
	document.write("<img src=\"http://dl.dropbox.com/u/6223485/photos/"+path+"%20mini.jpg\" class=\"thumbnail\" /></div>");
}

function videoItem(name,url){
	document.write("<video controls=\"controls\" width=\"320\" height=\"265\">");
	document.write("<source src=\"http://dl.dropbox.com/u/6223485/audiovideo/"+name+".mp4\" type=\"video/mp4\" />");
	document.write("<source src=\"http://dl.dropbox.com/u/6223485/audiovideo/"+name+".webm\" type=\"video/webm\" />");
	document.write("<source src=\"http://dl.dropbox.com/u/6223485/audiovideo/"+name+".ogg\" type=\"video/ogg\" />");
	document.write("<object width=\"320\" height=\"265\" align=\"left\" style=\"margin:10px;\">");
	document.write("<param name=\"movie\" value=\"http://www.youtube.com/v/"+url+"&hl=en_US&fs=1&rel=0\"></param><param name=\"allowFullScreen\" value=\"true\"></param><param name=\"allowscriptaccess\" value=\"always\"></param>");
	document.write("<embed src=\"http://www.youtube.com/v/"+url+"&hl=en_US&fs=1&rel=0\" type=\"application/x-shockwave-flash\" allowscriptaccess=\"always\" allowfullscreen=\"true\" width=\"320\" height=\"265\"></embed></object></video>");
}

function audioItem(name,url){
	document.write("<h3 align=\"center\">"+name+"</h3><audio controls=\"controls\" style=\"width:100%;\">");
	document.write("<source src=\"http://dl.dropbox.com/u/6223485/audiovideo/"+url+".mp3\" type=\"audio/mpeg\" />");
	document.write("<source src=\"http://dl.dropbox.com/u/6223485/audiovideo/"+url+".webm\" type=\"audio/webm\" />");
	document.write("<source src=\"http://dl.dropbox.com/u/6223485/audiovideo/"+url+".oga\" type=\"audio/ogg\" />");
	document.write("<embed src=\"http://www.google.com/reader/ui/3523697345-audio-player.swf\" flashvars=\"audioUrl=http://dl.dropbox.com/u/6223485/audiovideo/"+url+"\" width=\"256\" height=\"27\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\"></embed></audio>");
}

function diddy(name,url,week,message,numbers){
	document.write("<div style=\"width:852px;\">");
	document.write("<a href=\"http://www.soundcloud.com/kevinselwyn/"+url+"\"><img border=\"0\" src=\"http://dl.dropbox.com/u/6223485/soundcloud/Week"+week+".png\" width=\"200\" height=\"200\" alt=\"Week"+week+"\" class=\"newsPicture\" /></a>");
	document.write("<dl><dt class=\"recentnews\"><a href=\"http://www.soundcloud.com/kevinselwyn/"+url+"\">"+name+"</a></dt>");
	document.write("<dd style=\"text-indent:50px;\"><a href=\"http://www.soundcloud.com/kevinselwyn/"+url+"\" style=\"color:#ff5200; font-weight:bold;\">Listen</a> over at SoundCloud.com or below.");
	document.write("<br><br>"+message+"</dd></dl><br style=\"clear:both;\">");
	document.write("<object data=\"http://player.soundcloud.com/player.swf?url=http%3A%2F%2Fapi.soundcloud.com%2Ftracks%2F"+numbers+"&amp;show_comments=false&amp;auto_play=false&amp;color=001F48\" type=\"application/x-shockwave-flash\" id=\"soundcloud\">");
	document.write("<param name=\"movie\" value=\"http://player.soundcloud.com/player.swf?url=http%3A%2F%2Fapi.soundcloud.com%2Ftracks%2F"+numbers+"&amp;show_comments=false&amp;auto_play=false&amp;color=001F48\" /><param name=\"allowscriptaccess\" value=\"always\" />");
	document.write("<audio style=\"width:80%; margin:10px 0 0 85px;\" src=\"http://dl.dropbox.com/u/6223485/soundcloud/Week"+week+".mp3\" controls preload=\"none\"></audio></object><br></div>");
}

function playSound(soundobj){
	var thissound=document.getElementById(soundobj);
	thissound.Play();
}

function _blank(page){
	window.open(page,'_blank');return false;
}

function mobileRedirect(site){
	if ((navigator.userAgent.match(/iPhone/i)) || (navigator.userAgent.match(/iPod/i))){location.replace("http://www.kevinselwyn.com/"+site);}
	if (screen.width <= 699){document.location = "http://www.kevinselwyn.com/"+site;}
}
