// JavaScript Document

$(document).ready(function(){

/* 
index page links hover effect
*/
$("#content h2 a").hover(
	function(){
		$("span", this).fadeTo("normal", 0.33);
	},
	function(){
		$("span", this).fadeTo("normal", 0.00);
	}
);

/* 
nav links hover effect
*/
$("#nav h2 a").hover(
	function(){
		$(this).animate({
			paddingBottom: "15",
			marginTop: "-10"
		}, 300 );
	},
	function(){
		$(this).animate({
			paddingBottom: "5",
			marginTop: "0"
      }, 300 );
	}
);


});

