/* Default site js file */

$(document).ready( function () {
	// uncomment to enable submenus
	 $('#header #main_menu ul li').hover(
										function(){
											$(this).children('ul').fadeIn('fast');
										},
										function() {
											$(this).children('ul').fadeOut('fast');
										}); 
	 
	 //uncomment to enable news ticker
	// $("#news").newsticker(8000);
	 
	//email obfuscation bits
	
	$('span.email_obf').each(function () {
				email_addr = $(this).children('span.pre').html() + '@' + $(this).children('span.post').html();
				
				$(this).children('span').hide();
				
				$(this).html('<a href="mailto:'+email_addr+'">'+email_addr+'</a>');
				
									   });
	
});