/**
 * @author lyykfi
**/

var IE6 = false /*@cc_on || @_jscript_version < 5.7 @*/;
var IE7 = false /*@cc_on || @_jscript_version == 5.7 @*/;
var gteIE7 = false /*@cc_on || @_jscript_version >= 5.7 @*/;
var isMSIE = /*@cc_on!@*/false;

if(IE6) {
	 DD_belatedPNG.fix('.png');
	 
}

function fix_height() {
	if(!IE6) {
		$("#content").css("min-height",$("#wrapper").height()-380);
	} else {
		$("#content").css("height",$("#wrapper").height()-380);
	}

}

$(function (){  
    fix_height();
    fix_height();

    
    $(".hover_image").hover(
    	function() {
    		$(this).attr("src",$(this).attr("src").replace(/.png/, "_hover.png"));
    	}, function() {
    		$(this).attr("src",$(this).attr("src").replace(/_hover.png/, ".png"));
    	}
    );
});

