$(document).ready(function(){	

	$("li a.intro").hover(introShow,introHide);
	$("li a.hormone").hover(hormoneShow,hormoneHide);
	$("li a.far").hover(farShow,farHide);
	$("li a.vet").hover(vetShow,vetHide);
	$("li a.pain").hover(painShow,painHide);
	$("li a.articles").hover(articlesShow,articlesHide);
	$("li a.testimonials").hover(testimonialsShow,testimonialsHide);
	$("li a.events").hover(eventsShow,eventsHide);

}); // close document.ready

//INTRO SHOW/HIDE FUNCTIONS
function introShow(){
	$('#content-top-wrap .intro').show();
	$('#content-top-wrap .home').hide();
}

function introHide(){  
	$('#content-top-wrap .home').show();
	$('#content-top-wrap .intro').hide();
}

//HORMONE SHOW/HIDE FUNCTIONS
function hormoneShow(){
	$('#content-top-wrap .hormone').show();
	$('#content-top-wrap .home').hide();
}

function hormoneHide(){  
	$('#content-top-wrap .home').show();
	$('#content-top-wrap .hormone').hide();
}

//FAR SHOW/HIDE FUNCTIONS
function farShow(){
	$('#content-top-wrap .far').show();
	$('#content-top-wrap .home').hide();
}

function farHide(){  
	$('#content-top-wrap .home').show();
	$('#content-top-wrap .far').hide();
}

//VET SHOW/HIDE FUNCTIONS
function vetShow(){
	$('#content-top-wrap .vet').show();
	$('#content-top-wrap .home').hide();
}

function vetHide(){  
	$('#content-top-wrap .home').show();
	$('#content-top-wrap .vet').hide();
}

//PAIN SHOW/HIDE FUNCTIONS
function painShow(){
	$('#content-top-wrap .pain').show();
	$('#content-top-wrap .home').hide();
}

function painHide(){  
	$('#content-top-wrap .home').show();
	$('#content-top-wrap .pain').hide();
}

//ARTICLES SHOW/HIDE FUNCTIONS
function articlesShow(){
	$('#content-top-wrap .articles').show();
	$('#content-top-wrap .home').hide();
}

function articlesHide(){  
	$('#content-top-wrap .home').show();
	$('#content-top-wrap .articles').hide();
}

//TESTIMONIALS SHOW/HIDE FUNCTIONS
function testimonialsShow(){
	$('#content-top-wrap .testimonials').show();
	$('#content-top-wrap .home').hide();
}

function testimonialsHide(){  
	$('#content-top-wrap .home').show();
	$('#content-top-wrap .testimonials').hide();
}

//EVENTS SHOW/HIDE FUNCTIONS
function eventsShow(){
	$('#content-top-wrap .events').show();
	$('#content-top-wrap .home').hide();
}

function eventsHide(){  
	$('#content-top-wrap .home').show();
	$('#content-top-wrap .events').hide();
}