jQuery(document).ready(function($){
	$(".fadeit_sm img").css("opacity","1.0");
	
	$(".fadeit_sm img").hover(function(){
		$(this).fadeTo("normal", 0.6); // This should set the opacity to 100% on hover
	},
	function(){
		$(this).fadeTo("normal", 1.0); // This should set the opacity back to 60% on mouseout
	});
});
jQuery(document).ready(function($){
	$(".fadeit img").css("opacity","1.0");
	
	$(".fadeit img").hover(function(){
		$(this).fadeTo("normal", 0.6); // This should set the opacity to 100% on hover
	},
	function(){
		$(this).fadeTo("normal", 1.0); // This should set the opacity back to 60% on mouseout
	});
});
jQuery(document).ready(function($){
	$(".fadebig img").css("opacity","1.0");
	
	$(".fadebig img").hover(function(){
		$(this).fadeTo("normal", 0.6); // This should set the opacity to 100% on hover
	},
	function(){
		$(this).fadeTo("normal", 1.0); // This should set the opacity back to 60% on mouseout
	});
});




// Slide-Fade Function
jQuery.fn.slideFadeToggle = function(speed, easing, callback) {
  return this.animate({opacity: 'toggle', height: 'toggle'}, speed, easing, callback);  
};

jQuery(document).ready(function($) {
	$('.myRespondHead').click(function() {
		$(this).next().stop().slideFadeToggle('slow', function() {
			var $this = $(this);
		});
	});
	$('#mySitemap h3').click(function() {
		$(this).next().stop().slideFadeToggle('slow', function() {
			var $this = $(this);
		});
	});
});


// Image Overlay Slide-Fade
jQuery(document).ready(function($){
	$(".overlay").css("opacity","0.0");
		
	$(".showover a").hover(function(){
		$(this).next(".overlay").stop().animate({opacity: "0.6", bottom: "5"}, "slow");
	}, function(){
		$(this).next(".overlay").stop().animate({opacity: "0.0", bottom: "5"}, "slow");
	});
	
	$(".overlay").hover(function(){
		$(this).stop().animate({opacity: "0.6", bottom: "5"}, "0");
	}, function(){
		$(this).stop().animate({opacity: "0.0", bottom: "5"}, "0");
	});
	
});
