$(document).ready(function(){
	var apply_clicked = false;
	$(window).scroll(function() {
		$('.apply_container').stop().animate({top: $(document).scrollTop()+75},'fast');	
	});	
	
	$('.btn_tab').hover(
		function(){
			if(!apply_clicked)
			$('.apply_container').stop().animate({right: "-465px"},'fast');
		},function(){
			if(!apply_clicked)
			$('.apply_container').stop().animate({right: "-470px"},'fast');
		}
	);
	
	$('.btn_tab,.apply_close').click(function(){
		if(!apply_clicked){
			apply_clicked=true;
			$('.apply_container').stop().animate({right: "0px"},'500','easeOutExpo');
		}
		else{
			apply_clicked=false;
			$('.apply_container').stop().animate({right: "-470px"},'500','easeOutExpo');
		}
	})
	
});
