/* topnav fade links */
$(document).ready(function(){
	$(".topnav").fadeTo("slow", 0.7);
	$(".topnav").hover(function(){
		$(this).css ({'text-decoration':'underline'});
		$(this).fadeTo("slow", 1.0);
	//$(this).css ({'font-weight':'bold'}).fadeTo("slow", 1.0);
	},	function(){
	
	$(this).fadeTo("slow", 0.7);
	$(this).css ({'text-decoration':'none'});	
	//$(this).css ({'font-weight':''}).fadeTo("slow", 0.8);
	//$(this).css ({'background-color':'transparent'}).fadeTo("slow", 0.8);
	});
});

/* bottomnav fade links */
$(document).ready(function(){
	$(".bottomnav").fadeTo("slow", 0.7);
	$(".bottomnav").hover(function(){
		$(this).css ({'text-decoration':'underline'});
		$(this).fadeTo("slow", 1.0);
	},	function(){
	
	$(this).fadeTo("slow", 0.7);
	$(this).css ({'text-decoration':'none'});	
	});
});

/* image slider plugin */

$(document).ready(function(){	
	if ($('#slider').length){
		$("#slider").easySlider({
			auto: true,
			continuous: true,
			controlsShow:false,
			speed:1500
		});
	}
});

