$(document).ready(function() {
	$('#hoverHome').css("opacity","0");
	$('#hoverAbout').css("opacity","0");
	$('#hoverMedia').css("opacity","0");
	$('#hoverTest').css("opacity","0");
	$('#hoverEdu').css("opacity","0");
	$('#hoverContact').css("opacity","0");
	
	//Home
	$('#lnkHome').mouseover(function() {
		//$('#liHome').stop().animate({"height": "45px", "marginTop": "-8px"}, "fast");
		//$('#lnkHome').stop().animate({"height": "35px"}, "fast");
		$('#hoverHome').stop().animate({"height": "45px", "opacity": 1}, "slow");
	});
	
	$('#lnkHome').mouseout(function() {
		//$('#liHome').stop().animate({"height": "37px", "marginTop": "0px"}, "fast");
		//$('#lnkHome').stop().animate({"height": "27px"}, "fast");
		$('#hoverHome').stop().animate({"height": "37px", "opacity": 0}, "slow");
	});
	
	//About
	$('#lnkAbout').mouseover(function() {
		//$('#liAbout').stop().animate({"height": "45px", "marginTop": "-8px"}, "fast");
		//$('#lnkAbout').stop().animate({"height": "35px"}, "fast");
		$('#hoverAbout').stop().animate({"height": "45px", "opacity": 1}, "slow");
	});
	
	$('#lnkAbout').mouseout(function() {
		//$('#liAbout').stop().animate({"height": "37px", "marginTop": "0px"}, "fast");
		//$('#lnkAbout').stop().animate({"height": "27px"}, "fast");
		$('#hoverAbout').stop().animate({"height": "37px", "opacity": 0}, "slow");
	});
	
	//Media
	$('#lnkMedia').mouseover(function() {
		//$('#liMedia').stop().animate({"height": "45px", "marginTop": "-8px"}, "fast");
		//$('#lnkMedia').stop().animate({"height": "35px"}, "fast");
		$('#hoverMedia').stop().animate({"height": "45px", "opacity": 1}, "slow");
	});
	
	$('#lnkMedia').mouseout(function() {
		//$('#liMedia').stop().animate({"height": "37px", "marginTop": "0px"}, "fast");
		//$('#lnkMedia').stop().animate({"height": "27px"}, "fast");
		$('#hoverMedia').stop().animate({"height": "37px", "opacity": 0}, "slow");
	});
	
	//Testimonials
	$('#lnkTest').mouseover(function() {
		//$('#liTest').stop().animate({"height": "45px", "marginTop": "-8px"}, "fast");
		//$('#lnkTest').stop().animate({"height": "35px"}, "fast");
		$('#hoverTest').stop().animate({"height": "45px", "opacity": 1}, "slow");
	});
	
	$('#lnkTest').mouseout(function() {
		//$('#liTest').stop().animate({"height": "37px", "marginTop": "0px"}, "fast");
		//$('#lnkTest').stop().animate({"height": "27px"}, "fast");
		$('#hoverTest').stop().animate({"height": "37px", "opacity": 0}, "slow");
	});
	
	//Patient Education
	$('#lnkEdu').mouseover(function() {
		//$('#liEdu').stop().animate({"height": "45px", "marginTop": "-8px"}, "fast");
		//$('#lnkEdu').stop().animate({"height": "35px"}, "fast");
		$('#hoverEdu').stop().animate({"height": "45px", "opacity": 1}, "slow");
	});
	
	$('#lnkEdu').mouseout(function() {
		//$('#liEdu').stop().animate({"height": "37px", "marginTop": "0px"}, "fast");
		//$('#lnkEdu').stop().animate({"height": "27px"}, "fast");
		$('#hoverEdu').stop().animate({"height": "37px", "opacity": 0}, "slow");
	});
	
	//Contact Us
	$('#lnkContact').mouseover(function() {
		//$('#liContact').stop().animate({"height": "45px", "marginTop": "-8px"}, "fast");
		//$('#lnkContact').stop().animate({"height": "35px"}, "fast");
		$('#hoverContact').stop().animate({"height": "45px", "opacity": 1}, "slow");
	});
	
	$('#lnkContact').mouseout(function() {
		//$('#liContact').stop().animate({"height": "37px", "marginTop": "0px"}, "fast");
		//$('#lnkContact').stop().animate({"height": "27px"}, "fast");
		$('#hoverContact').stop().animate({"height": "37px", "opacity": 0}, "slow");
	});
	
	//Sidebar Navigation Effects
	$('.sideInactive').hover(
		function(){
			$(this).stop().animate({paddingLeft:"35px", width:"169px"}, {queue:true, duration:300});
			$(this).css({ background: 'url(images/sideBarLinksHover.jpg) 0px 0px no-repeat' });
		},
		function(){
			$(this).stop().animate({paddingLeft:"20px"}, {queue:true, duration:300});
			$(this).css({ background: 'url(images/sideBarLinks.jpg) 0px 0px no-repeat' });
	});
});
