$(function() {
	$('#video-banner').live('click', function() {
		$(this).parent().html(video1);
		return false;
	});
	
	$('#ocean-video').live('click', function() {
		$(this).parent().html(video2);
		return false;
	});
	$('.blink')
		.focus(function(){
			if ( $(this).attr('value') == $(this).attr('title') ) {
				$(this).attr({ 'value': '' })
			}
		})
		.blur(function(){
			if ( $(this).attr('value') == '' ) {
				$(this).attr({ 'value': $(this).attr('title') })
			}
		})
});

var video1 = '<object width="239" height="137"><param name="movie" value="http://www.youtube.com/v/g1JL2WD_qfs&hl=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/g1JL2WD_qfs&hl=en&fs=1&autoplay=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="239" height="137"></embed></object>';
var video2 = '<object width="343" height="257"><param name="movie" value="http://www.youtube.com/v/Yr-1fq_CjFA&hl=en_US&fs=1&rel=0&color1=0x3a3a3a&color2=0x999999"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Yr-1fq_CjFA&hl=en_US&fs=1&rel=0&color1=0x3a3a3a&color2=0x999999&autoplay=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="343" height="257"></embed></object>';
