
$(document).ready(function(){ 
	//home slideshow
	$('#slider').nivoSlider({
		effect:'fade', //Specify sets like: 'fold,fade,sliceDown'
		animSpeed:1000, //Slide transition speed
		pauseTime:7000,
		startSlide:0, //Set starting Slide (0 index)
		directionNav:false, //Next & Prev
		directionNavHide:true, //Only show on hover
		controlNav:true, //1,2,3...
		controlNavThumbs:false, //Use thumbnails for Control Nav
      	controlNavThumbsFromRel:false, //Use image rel for thumbs
		captionOpacity:0 //Universal caption opacity
	});
	//about slideshow
	$('#slider2').nivoSlider({
		effect:'fade', //Specify sets like: 'fold,fade,sliceDown'
		animSpeed:1000, //Slide transition speed
		pauseTime:8000,
		startSlide:0, //Set starting Slide (0 index)
		directionNav:false, //Next & Prev
		directionNavHide:true, //Only show on hover
		controlNav:false, //1,2,3...
		controlNavThumbs:false, //Use thumbnails for Control Nav
      	controlNavThumbsFromRel:false, //Use image rel for thumbs
		captionOpacity:0 //Universal caption opacity
	});
	//navigation
	$(".fc img").fadeTo(0, 0.35); // This sets the opacity of the thumbs to fade down to 60% when the page loads

	$(".fc img").hover(function(){
				$(this).fadeTo("slow", 1.0); // This should set the opacity to 100% on hover
				},function(){
				$(this).fadeTo("slow", 0.35); // This should set the opacity back to 60% on mouseout
				});
	

	//home bottom navigation
	$('.boxgrid').hover(function(){
					$(".cover", this).stop().animate({top:'130px'},{queue:false,duration:160});
				}, function() {
					$(".cover", this).stop().animate({top:'155px'},{queue:false,duration:160});
				});
 
	//footer
    $('#footer a').hover(function()
    {
        $(this).animate({color: "#554236"}, 500)
    },
    function()
    {
        $(this).animate({color: "#b0aba7"}, 500)
    });
}); 						  
						 
