$(document).ready(function(){
	// round corners
	$('.RoundCorner').corner("10px");
	$('#NavBar').corner("20px");
	
	// 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();
});
