// JavaScript Document

$().ready(function() {
	
$(".box").mouseover(function(){
		$(this).addClass('ascrollover');
});
$(".box").mouseout(function(){
		$(this).removeClass('ascrollover');
});
   
   
$(".box").hover(function(){
	if ($(this).hasClass('ascrollover')) {
			$(this).stop().fadeTo(420, 0.2);
		} else {
			$(this).stop().fadeTo(420, 1);
	};
});


});
