$(document).ready(function() {	
	//footer logo over state
	$('.hoverimg').mouseover(function() {
		if($(this).is('img') || $(this).is('input')){
		  $(this).fadeTo(225, 0.7);
		}
		else {
			var tmpClass = $(this).attr("class");
			$("." + tmpClass + " img").fadeTo(225, 0.7);
		}
	});
	$('.hoverimg').mouseout(function() {
		if($(this).is('img') || $(this).is('input')){
		  $(this).fadeTo(225, 1.0);
		}
		else {
			var tmpClass = $(this).attr("class");
			$("." + tmpClass + " img").fadeTo(225, 1.0);
		}
	});

});
