$(document).ready(function(){
	// drop down nav
	$('ul#nav li').hover(
		function(){ $(this).children('ul').show(); },
		function(){ $(this).children('ul').hide(); }
	);
	
	// round corners
	$('#LeftNavBar, #content, #home-news, #home-list, #home-media, #home-info, .RoundCorner').corner("10px");
	
	// anti spam form validation
	$('input,textarea').keypress(function(){
		this.form.elements.pv.value='verified';
	});
 
	// png fix for old IE browsers
	$(document).pngFix();
	
	});
