jQuery(document).ready(function() {
	jQuery(document).pngFix();
	
	//initMenus();
	
	//	search field hint
	jQuery("#query-field input[title!='']").hint();
	
	
	//	animated top links
	jQuery("a.top").click(function() {
		jQuery('html, body').animate({scrollTop:0}, 'slow');
		return false;
	});
});

