$(function(){
	var fdInSpd = 300;
	var fdOutSpd = 200;
    $('.topCol .inner').biggerlink();
    $('.topCol .inner').append('<p class="ovScrn"><img src="/images/top_thumb_ov.png" alt="" class="pfix" /></p>');
    $('.topCol .inner').hover(
    	function(){
//    		$(this).animate({backgroundColor:'#f5f0f2'},fdInSpd);
    		if(window.addEventListener){
    			$(this).children('.ovScrn').fadeIn(fdInSpd);
    			$(this).children('.enter').fadeTo(fdInSpd,0.3);
    		} else if(window.attachEvent){//IEでは透過PNGのfade()がうまく機能しないため分岐
    		    $(this).children('.ovScrn').show();
//    		    $(this).addClass('ieOv');
    		}
    	},
    	function(){
//    		$(this).animate({backgroundColor:'#ffffff'},fdOutSpd);
    		if(window.addEventListener){
    			$(this).children('.ovScrn').fadeOut(fdOutSpd);
    			$(this).children('.enter').fadeTo(fdOutSpd,1);
    		} else if(window.attachEvent){//IEでは透過PNGのfade()がうまく機能しないため分岐
    		    $(this).children('.ovScrn').hide();
//    		    $(this).removeClass('ieOv');
    		}
    	}
    );
    $('#col2e .inner').hover(
    	function(){
    		$(this).animate({backgroundColor:'#e6dddd'},fdInSpd);
    	},
    	function(){
    		$(this).animate({backgroundColor:'#ffffff'},fdOutSpd);
    	}
    );
	$('#colLappart .inner').hover(
		function(){
			$(this).animate({backgroundColor:'#e1d1d7'},fdInSpd);
		},
		function(){
			$(this).animate({backgroundColor:'#ffffff'},fdOutSpd);
		}
	);
	$('#colLallure .inner').hover(
		function(){
			$(this).animate({backgroundColor:'#d9d2dc'},fdInSpd);
		},
		function(){
			$(this).animate({backgroundColor:'#ffffff'},fdOutSpd);
		}
);
});

