$(document).ready(function(){



	$('input:text').blur(function(){
		if( $(this).val().length === 0 ) {
			var tit = $(this).attr("title");
			$(this).attr("value",tit);
		}
	});

	$('input:text').focus(function(){
		var tit = $(this).attr("title");
		if( $(this).val() == tit ) {
			$(this).attr("value","");
		}
	});

		$('.list-videos li a').click(function(event) {
		event.preventDefault();
		$(this).parent().addClass('on').siblings().removeClass("on");
		if ( $(this).attr('rel') == 'video') {
			$('.video img').attr('src','');
			$('.video img').hide();
			$('.video iframe').show();
			$('.video iframe').attr('src', $(this).attr('href')).show();
		} else {
			$('.video iframe').attr('href','');
			$('.video iframe').hide();
			$('.video img').show();
			$('.video img').attr('src', $(this).attr('href')).show();
		}
	});

});
