// JavaScript Document

$(document).ready(function(){
	$("#join-us").css({'opacity':'0'})			   
	$("#join-us img").css({
		  'height':'0px',
		  'width':'0px',
		  'paddingTop':'65px',
		  'paddingLeft':'51px'});
	
	setTimeout(fadeUpBtn,500);
	
	function fadeUpBtn() {
		$("#join-us").fadeTo("slow", 1.0);			   
		$("#join-us img").animate({
		  'height':'129px',
		  'width':'102px',
		  'paddingTop':'0px',
		  'paddingLeft':'0px'});
	
}
$("#join-us").hover(function(){
	$(this).stop().animate({"opacity": 0.5}); // This should set the opacity to 50% on hover
	},function(){
	$(this).stop().animate({"opacity": 1}); // This should set the opacity back to 100% on mouseout
	});
});