$(document).ready(function(){
$('#showNews').click(function() {
	$('#hours').hide();
	$('#contact').hide();
	$('#news').fadeIn(1500);
});

$('#showContact').click(function() {
	$('#news').hide();
	$('#hours').hide();
	$('#contact').fadeIn(1500);
});

$('#showHours').click(function() {
	$('#news').hide();
	$('#contact').hide();
	$('#hours').fadeIn(1500);
});

$("a.menuNav").click(function() {
	$('#showNews').removeClass('selected');
	$('#showHours').removeClass('selected');
	$('#showContact').removeClass('selected');
	$(this).addClass('selected');
});


/*Bottom navigation hover effects*/
$(".newsletterContent").hover(function () {$('#newsletterTitle').hide();$('#newsletterTitle_o').show();$("#newsletterContent").css('background-image', 'url(images/bottomNavBG_o.png)');},function () {$('#newsletterTitle_o').hide();$('#newsletterTitle').show();$("#newsletterContent").css('background-image', 'url(images/bottomNavBG.png)');});
$(".photosContent").hover(function () {$('#photosTitle').hide();$('#photosTitle_o').show();$("#photosContent").css('background-image', 'url(images/bottomNavBG_o.png)');},function () {$('#photosTitle_o').hide();$('#photosTitle').show();$("#photosContent").css('background-image', 'url(images/bottomNavBG.png)');});
$(".eventsContent").hover(function () {$('#eventsTitle').hide();$('#eventsTitle_o').show();$("#eventsContent").css('background-image', 'url(images/bottomNavBG_o.png)');},function () {$('#eventsTitle_o').hide();$('#eventsTitle').show();$("#eventsContent").css('background-image', 'url(images/bottomNavBG.png)');});
$(".vendorsContent").hover(function () {$('#vendorsTitle').hide();$('#vendorsTitle_o').show();$("#vendorsContent").css('background-image', 'url(images/bottomNavBG_o.png)');},function () {$('#vendorsTitle_o').hide();$('#vendorsTitle').show();$("#vendorsContent").css('background-image', 'url(images/bottomNavBG.png)');});

});


