jQuery.noConflict();

jQuery(document).ready(function(){  

	   jQuery(".imageIngress img").hover(function() {
	  	jQuery(this).stop().animate({ opacity: "0.7"}, 400);
	   }, function() {
	  		jQuery(this).stop().animate({ opacity: "1"}, 400);
	   });
	
		jQuery("div.socialSidebar ul li a img").hover(function() {
			jQuery(this).stop().animate({ opacity: "1"}, 400);
		}, function() {
			jQuery(this).stop().animate({ opacity: "0.6"}, 400);
		});
	
		//jQuery("div.socialSidebar ul li a[title]").tooltip({ effect: 'fade'});

		//jQuery("#tooltip_test").tooltip({ effect: 'fade'});

		//jQuery("#photo-rotator").tabs({fx:{opacity: "toggle"}}).tabs("rotate", 3000);
		
		//if focus is in the password login box activate push enter on loginlink
		 jQuery("#password").live("click", function() {

		        //if enter key is pressed
		        if(e.keyCode == 13) {

		                //click the button and go to next page
		               jQuery("#logInClick").click();
		        }               
		  });

});
