jQuery(function(){

// NEWSLETTER SIGNUP
var signupInput = jQuery('#signupInput');
var signupLabel = jQuery('#signupLabel');
var signupSubmit = jQuery('#signupSubmit');

signupInput.focus(function(){
	signupLabel.hide();
}).blur(function(){
	if (signupInput.val() == '') {
		signupLabel.show();
	}
});

signupSubmit.val('');


// BLIP VIDEOS 
var VideoContainer = jQuery('#topVideo');
var VideoLinks = jQuery('#videoThumbnails ul li a');

function showVideo(url) {
	//VideoContainer.html('<embed src="' + url + '" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true"></embed>');
	// allowing script access will make IE throw up
	VideoContainer.html('<embed src="' + url + '" type="application/x-shockwave-flash" allowfullscreen="true"></embed>');
}

VideoLinks.click(function(){
	var tgt = jQuery(this).attr('href');
	showVideo(tgt);
	return false;
});

showVideo(VideoLinks.eq(0).attr('href'));


});