var vidLOC = 'http://www.youtube.com/embed/';
$(document).ready(function() {
	$('.video-browse ul li').click(function() {
		$('.video-browse ul li').removeClass('current');	
		$(this).addClass('current');
		var newVID = vidLOC + $(this).attr('id');
		$('#hs_video').attr('src',newVID);
		document.getElementById('rt_videos').innerHTML =  "<strong>" + $(this).children("img").attr('name') + "</strong><br />" + $(this).children("img").attr('id')
	});
	
	$('input[type="text"]').addClass("idleField");
	$('input[type="text"]').focus(function() {
		$(this).removeClass("idleField").addClass("focusField");
		if (this.value == this.defaultValue){ 
			this.value = '';
		}
		if(this.value != this.defaultValue){
			this.select();
		}
	});
	$('input[type="text"]').blur(function() {
		$(this).removeClass("focusField").addClass("idleField");
		if ($.trim(this.value) == ''){
			this.value = (this.defaultValue ? this.defaultValue : '');
		}
	});
});

