﻿//Fade Function
(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);

jQuery(document).ready(function(){
	//Special Tabs					
	jQuery("a.more").click(function() {
		jQuery("a.more").removeClass("active");
		jQuery(this).addClass("active");
		jQuery('div.more').hide();
		var activeDiv = jQuery(this).attr("href");
		jQuery(activeDiv).customFadeIn('slow', function() {});
		return false;
	});
	
});