// General jQuery Functions
jQuery(document).ready(function(){
	jQuery(".widget-area ul li").css('opacity', '0.6');
	jQuery("#menu-primary-nav a").css('opacity', '0.6');
	jQuery("#access ul li.current_page_item a").css('opacity', '1.0');
	

	// "a:hover" function for primary navigation
	jQuery("#menu-primary-nav a").hover(function() {
		jQuery(this).fadeTo("fast", 1.0);
	}, function() {
		jQuery(this).fadeTo("fast", 0.6);
	});
	
	// Make sure we don't un-highlight current page markers
	jQuery("#access ul li.current_page_item a").hover(function() {
		jQuery(this).fadeTo("fast", 1.0);
	}, function() {
		jQuery(this).fadeTo(0, 1.0);
	});
	
	// "a:hover" function for images
	jQuery("a img").hover(function() {
		jQuery(this).fadeTo("fast", 0.6);
	}, function() {
		jQuery(this).fadeTo("fast", 1.0);
	});
	
	// "a:hover" function for form submit buttons
	jQuery(".gform_footer").hover(function() {
		jQuery(this).fadeTo("fast", 0.6);
	}, function() {
		jQuery(this).fadeTo("fast", 1.0);
	});
	
	// "a:hover" function for footer
	jQuery(".widget-area ul li").hover(function() {
		jQuery(this).fadeTo("fast", 1.0);
	}, function() {
		jQuery(this).fadeTo("fast", 0.6);
	});
});
