(function(jQuery) {
	jQuery.fn.customFadeIn = function(speed, callback) {
		jQuery(this).fadeIn(speed, function() {
			if(jQuery.browser.msie)
				jQuery(this).get(0).style.removeAttribute('filter');
			if(callback != undefined)
				callback();
		});
	};
	jQuery.fn.customFadeOut = function(speed, callback) {
		jQuery(this).fadeOut(speed, function() {
			if(jQuery.browser.msie)
				jQuery(this).get(0).style.removeAttribute('filter');
			if(callback != undefined)
				callback();
		});
	};
})(jQuery);

function DesignStages() {
    jQuery(this).click(function() {
		jQuery("a.More").removeClass("Active");
		jQuery(this).addClass("Active");
		jQuery('div.More').hide();
        var e = "div#" + jQuery(this).attr("title");
		jQuery(e).customFadeIn('slow', function() {});
        return false;
    });
}

jQuery(document).ready(function(){	
	jQuery("a.More").livequery(DesignStages);
});