$(document).ready(function(){


	$("#btn_video-frame").click(function(event){
		$("#dimSheet").fadeIn();
		$("#introVideoModal").fadeIn('slow');
	});
	
	$("#videoSideBar img").click(function(event){
		$("#dimSheet").fadeIn();
		$("#introVideoModal").fadeIn('slow');
	});
	
	$("#videoSideBar a").click(function(event){
		$("#dimSheet").fadeIn();
		$("#introVideoModal").fadeIn('slow');
		return false;
	});

	$("#dimSheet").click(function(event){
		$(this).fadeOut();
		$("#introVideoModal").fadeOut();
		hidePlayerIE();
	});
	
	$("#closeModal").click(function(event){
		$("#dimSheet").fadeOut();
		$("#introVideoModal").fadeOut();
	});
	
$('input[type=text]').focus(function(){ 
    if ($(this).val() == $(this).attr('defaultValue'))
    {
      $(this).val('');
    }
  });
  
  $('input[type=text]').blur(function(){
    if ($(this).val() == '')
    {
      $(this).val($(this).attr('defaultValue'));
    }
  });
  

});