$(document).ready(function() {
	$('.mgla').find('img').fadeTo(250,0.4);
	$('.mgla').hover(function() {		
		width = $('.mgla').width();
		height = $('.mgla').height();
		$(this).find('img').fadeTo(250,1);
	},
	function() {
		$(this).find('img').fadeTo(250,0.4);
	});	
});
