$(document).ready(function(){
	// round corners
	$('#banner,#footer,#ctaBox,.RoundCorner').corner("10px");
	$('#NavBar').corner("10px tl tr");
	$('#wrap').corner("10px bl br");
	
	// drop down nav
	$('ul#nav li').hover(
		function(){ $(this).children('ul').show(); },
		function(){ $(this).children('ul').hide(); }
	);
	
	// anti spam form validation
	$('input,textarea').keypress(function(){
		this.form.elements.pv.value='verified';
	});
	
	// png fix for old IE browsers
	$(document).pngFix();
});
