$(document).ready(function() {
	$(".image_frame").hover(function() { $(this).children(".overlay").stop(true,true).fadeIn("fast"); }, function() { $(this).children(".overlay").stop(true,true).fadeOut("fast"); });
	$("#header_menu li").hover(function() { $(this).stop(true,true).fadeTo("fast",0.4); }, function() { $(this).stop(true,true).fadeTo("fast",1); });
	$(".fade").hover(function() { $(this).stop(true,true).fadeTo("fast",0.6); }, function() { $(this).stop(true,true).fadeTo("fast",1); });
	$(".fade_in").hover(function() { $(this).stop(true,true).fadeTo(0,0).css('background-color', '#FFFFFF').fadeTo("fast",0.6); }, function() { $(this).stop(true,true).fadeTo("fast",0); });
});
