// JavaScript Document

// requires jQuery

// some hover enhancements
$(document).ready(function () {
							

							
	//$('#navbar, #wp_page_numbers, .wp_page_numbers, #breadcrumb, .home #infobar').hover(
	$('#navbar, #wp_page_numbers, .wp_page_numbers, #breadcrumb, .home #infobar').hover(
			//mouse over
			function(){
				$(this).stop(true, true).animate({
						opacity: 1,
  				}, 300); 
				return false; 
			},
					// mouse out
			function(){
				$(this).stop(true, true).animate({
					opacity: 0.6,
  				}, 300);
					return false;
			}
	);

	$('.post').hover(
			function(){$(this).children('.postinfo').children('.hidden').stop(true, true).animate({ opacity: 1}, 300); },
			function(){$(this).children('.postinfo').children('.hidden').stop(true, true).animate({ opacity: 0}, 300); }			  
	);


}); // end on load
