//begin IE7 cleartype workaround
(function($) {
	$.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);//end IE7 cleartype workaround
//----------------------------------------------------------------------------------------------------
$(document).ready(function(){
//----------------------------------------------------------------------------------------------------
$("table tr:odd").addClass("odd");
$("table tr:even").addClass("even");
//----------------------------------------------------------------------------------------------------
$('*').tooltip({ 
	showURL:false,
	fade:200,
	delay:300,
	showBody:' - '
});
//----------------------------------------------------------------------------------------------------
$(".error,.success,.info,.notice").hide().fadeIn(400);
//----------------------------------------------------------------------------------------------------

//----------------------------------------------------------------------------------------------------
});//end jQuery