/* http://www.detacheddesigns.com/blog/blogSpecific.aspx?BlogId=62 */
/* Switch the youtube videos on the homepage */

$(function()
{
    	$("#videoOptions a").click(function(event) {
		event.preventDefault();
		var videoSource = $(this).attr("href");
		$("param").attr("value", videoSource);
		$("embed").attr("src", videoSource);
		alert(videoSource);
		/*showVideo(videoSource);*/
		/*return false;*/
    	});
});


