// Tabs on the main page
/*function opentab(tab) {
	var tabtags = document.getElementById('tabtags');
	var newstab = document.getElementById('newstab');
	var photoestab = document.getElementById('photoestab');
	
	if (tab == 'photoestab') {
			photoestab.style.display = 'block';
			newstab.style.display = 'none';
	} else {
		photoestab.style.display = 'none';
		newstab.style.display = 'block';
	}
	
	tabtags.className = tab;
	
	return false;
}*/

// Search fields in the header and footer
// Should submit on click on form and should not on click in textfield
function stopIt(e) {
	try {
		window.event.cancelBubble = true;
	}
	catch (err) {
		e.stopPropagation();
	}
}

jQuery(function($){
		// Navigation drop shadow text
		$('#nav a, #subnav a, #head .phone').each(function(){$(this).textDropShadow();});
		
		// Zebra table
		$('table.data tr:even').addClass('even');
});

