// Search fields in the header and footer
// Should submit on click on form and should not on click in textfield
function stopEvent(e) {
	try {
		window.event.cancelBubble = true;
	}
	catch (err) {
		e.stopPropagation();
	}
}

jQuery(function($){
		// Navigation drop shadow text
		//$('button').each(function(){$(this).textDropShadow();});
		
		// Zebra table
		//$('table.data tr:even').addClass('even');
});
