$(document).ready(function() {
	//Invoking the supersized function on the div with id - supersize. It is the div that contains the large background image
	$("div#supersize").supersize();
	$("#home_page #blocks").delay(1000).animate({
	  "left": "230"

	}, 1000, "easeInQuart");
	
	$('li.hova').bind('mouseenter', function (e) {
	  $(this).children('.subnav_wrap').show();
	  $(this).children('#about_nav a').css({backgroundPosition: '0px -82px'});
	  $(this).children('#academic_nav a').css({backgroundPosition: '-120px -82px'});
	  $(this).children('#student_nav a').css({backgroundPosition: '-240px -82px'});
	  $(this).children('#admissions_nav a').css({backgroundPosition: '-360px -82px'});
	  $(this).children('#pre_nav a').css({backgroundPosition: '-480px -82px'});
	  $(this).children('#quick_nav a').css({backgroundPosition: '-600px -82px'});
	})
	.bind('mouseleave', function (e) {
	  $(this).children('.subnav_wrap').hide();
	  $(this).children('#about_nav a').css({backgroundPosition: '0px 0px'});
	  $(this).children('#academic_nav a').css({backgroundPosition: '-120px 0px'});
	  $(this).children('#student_nav a').css({backgroundPosition: '-240px 0px'});
	  $(this).children('#admissions_nav a').css({backgroundPosition: '-360px 0px'});
	  $(this).children('#pre_nav a').css({backgroundPosition: '-480px 0px'});
	  $(this).children('#quick_nav a').css({backgroundPosition: '-600px 0px'});
	});
	
	$('#bg_toggle a').toggle(function() {
	  $("#wrap").fadeOut(300);
	  $("#bg_toggle").css({backgroundPosition: '-20px 0px'});
	}, function() {
	  $("#wrap").fadeIn(600);
      $("#bg_toggle").css({backgroundPosition: '0px 0px'});
	});
	
});
