$(document).ready(function(){

	// ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
  // Rollovers
  $("a.rollover").hover(
    function() {
      curr = $(this).find("img").attr("src");
      overlen = curr.length;
      over = curr.substr(0, overlen-4);
      over = over+'_on.png';
      $(this).find("img").attr({ src: over });
    },
    function() {
      $(this).find("img").attr({ src: curr });
    }
  );
  // Rollovers - Preload images
  $("a.rollover").find("img").each(function(i){
    temp = this.src;
    prelen = temp.length;
    pre = temp.substr(0, prelen-4);
    pre = pre+'_on.png';
    preload_image_object = new Image();
    preload_image_object.src = pre;
  });

	// ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
  // toolTip on Email Sign-Up
	$('#emailTip').tipsy({gravity: 's'});



	// ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
  // Footer Newsletter Form
	$("input#subscriberName").focus(function(){
		if ($("input#subscriberName").val() == 'Your Name') {
		  $("input#subscriberName").val('');
		}
  });
	$("input#subscriberName").blur(function(){
		if ($("input#subscriberName").val() == '') {
		  $("input#subscriberName").val('Your Name');
		}
	});      
	
	$("input#subscriberEmail").focus(function(){
		if ($("input#subscriberEmail").val() == 'Email Address') {
		$("input#subscriberEmail").val('');
		}
  });
	$("input#subscriberEmail").blur(function(){
		if ($("input#subscriberEmail").val() == '') {
	  $("input#subscriberEmail").val('Email Address');
		}
	});      


	// ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
	// Facebook Feed on homepage

	// Fan Page
	// $('#facebookFeed').fbWall({
	// id:'96092971404',
	// showGuestEntries:false,
	// showComments:false,
	// max:2,
	// timeConversion:12
	// });
	
	// Official page
	$('#facebookFeed').fbWall({
	id:'teachmypeople',
	accessToken:'206158599425293|1df31a8727c3377cea29f485.1-100000221135225|YRxEUQA5gDlA4yFvGCBI3IMYO8U',
	showGuestEntries:false,
	showComments:false,
	max:2,
	timeConversion:12
	});

	// ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
	// Load Video on homepage
	$('a#videoSplash').click(function(){
		$('img.splashScreen').fadeOut('fast');
		$("#video").load("/video.html");
	});

});
