// JavaScript Document



//(function($) {
$(document).ready(function(){ 
						   
	//IE fade fix					   
	$.fn.customFadeIn = function(speed, callback) {
		$(this).fadeIn(speed, function() {
			if(jQuery.browser.msie)
				$(this).get(0).style.removeAttribute('filter');
			if(callback != undefined)
				callback();
		});
	};
	$.fn.customFadeOut = function(speed, callback) {
		$(this).fadeOut(speed, function() {
			if(jQuery.browser.msie)
				$(this).get(0).style.removeAttribute('filter');
			if(callback != undefined)
				callback();
		});
	};
//})(jQuery);
	$('#content').hide();

	//console.log('about to fade in');
	$('#content').delay(400).customFadeIn('slow'); //delay required to not instantly show

});
