$(document).ready(function(){
	initImageHover();
	
});

function initImageHover()
{
	//$(".imagecontainer img").hover(function(){$(this).fadeIn(100);$(this).fadeIn(500);});
	$('.imagecontainer').each(function() {
        $(this).hover(function() {
            $(this).stop().animate({ opacity: 0.7 }, 100);
        },
       function() {
           $(this).stop().animate({ opacity: 1.0 }, 100);
       });
    });

}
