


  $(document).ready(function($) {



/* NAVIGATION EFFECTS */
	
	$("ul#nav li").hover(function() {

		$(this).find("a").stop(true, true).animate({ backgroundColor: "#854337", color: "#fff", width: "92%" }, 500);
	
	},function() {

		$(this).find("a").stop(true, true).animate({ backgroundColor: "#fff", color: "#91554a", width: "70%" }, 500);
		
	});



/* NAVIGATION MENU */
	
	$("ul#nav li a").not(".no-effect").click(function() {
	
	var thePage = $(this).attr("href");

		$("#main-left").find("div#" + thePage).stop(true, true).fadeTo( 500, 1.0).css("z-index", "10");	
		
		$("#main-left").find("div.thePage").not("div#" + thePage).stop(true, true).fadeTo( 10, 0.0).css("z-index", "1");

	});


/* ABOUT LIGHTBOX */

	$("a.lightbox").stop(true, true).fancybox({

		'width' : 500,
		'height' : 500,
		'autoDimensions' : 'false',
		'overlayColor' : '#000'
	});
		

/* PROSTHONDONTICS LINK */
	
	$("#services-offered .red-left p a").click(function() {
	
	
	$("#more-info").stop(true, true).fadeTo( 500, 1.0);	
		
		
	});




/* FOOTER COPY */
	
	$("ul#nav li a").not("[href*='#home'], [href*='privacy.html'], [href*='terms-conditions.html']").click(function() {

		$("#footer-copy").stop(true, true).css("display", "none");
		$("#footer span#footer-left").stop(true, true).css("margin-left", "0px");		

	});

	$("ul#nav li a[href*='#home']").click(function() {

		$("#footer-copy").stop(true, true).css("display", "block");
		$("#footer span#footer-left").stop(true, true).css("margin-left", "25px");	

	});







});


