$(function() {
	$('body').supersleight();
	$.each($("img.btn"), function(index, value) {
		$("<img />").attr("src", ($(this).attr("src").match(/[^\.]+/) + "Active.png"));
	});
    $("img.btn").hover(function() {
			if(typeof document.body.style.maxHeight !== "undefined") {
	            var src = $(this).attr("src").match(/[^\.]+/) + "Active.png";
            	$(this).attr("src", src);
			}
        }, function() {
			if(typeof document.body.style.maxHeight !== "undefined") {
	            var src = $(this).attr("src").replace("Active", "");
	            $(this).attr("src", src);
			}
        });
});