	//yonis jquery stuff for AnthroNow (c) 2009-10
	//yoni@social-ink.net
	
	var $j = jQuery.noConflict(); //declare this cause of problems with WP
	
	$j(function(){

			$j("#navbar img").fadeTo("slow", .7);
			
			// this is to make the top tabs fade
		
			$j("#navbar img").hover(function() {
				$j(this).fadeTo("fast", 1);	
			}, function() {
				$j(this).fadeTo("fast", .7);
			});
				
			$j("#top_header img").hover(function() {
				$j(this).fadeTo("fast", .7);	
			}, function() {
				$j(this).fadeTo("fast", 1);
			});
			
			$j(".upper_tabs img").hover(function() {
				$j(this).fadeTo("fast", .7);	
			}, function() {
				$j(this).fadeTo("fast", 1);
			});
			
	});
