$(document).ready(function(){
	// nav
	$('ul#nav li').hover(
		function(){ $(this).children('ul').show(); },
		function(){ $(this).children('ul').hide(); }
	);
	$('ul.in-page-nav li:first').addClass('first');

	// anti spam form validation
	$('input,textarea').keypress(function(){
		this.form.elements.pv.value='verified';
	});
	
	// png fix for old IE browsers
	$(document).pngFix();
	
	// add this
	$('#addthis').html('<a class="addthis_button" href="http://addthis.com/bookmark.php?v=250&amp;pub=xa-4add55a775c9373c"><img src="http://s7.addthis.com/static/btn/v2/lg-share-en.gif" width="125" height="16" alt="Bookmark and Share" style="border:0"/></a><sc'+'ript type="text/javascript" src="http://s7.addthis.com/js/250/addthis_widget.js#pub=xa-4add55a775c9373c"></sc'+'ript>');
});
