$(function(){

//	/*
//		backport from evk.js
//	*/
//	// join input helper
//	$("#mailing-list input").focus(function(){
//		var label = $(this).data('label') || $(this).val();
//		$(this).data('label',label);
//		if( $(this).val() == label ){
//			$(this).val('');
//		}
//	}).blur(function(){
//		if( $(this).val() == '' ){
//			$(this).val($(this).data('label'));
//		}
//	});
//
////	//add text-shadow to table th
////	if( $.browser.msie )
////	{
////		$(".classic th")
////			.html(function(index, html){ return ['<span class="ie-text-shadow">',html,'</span>'].join(''); })
//////			.find('span')
//////				.addClass('ie-text-shadow');
////			;
////	}
	$("#ajax-loading")
		.ajaxStart(function(){ $(this).show() })
		.ajaxStop(function(){ $(this).hide() });
		
});

