

$(document).ready(function(){


	$(".contact_bg").hide();
	$(".contact_bg").fadeIn(1500);

	$("#twitter_btn img").animate({ opacity: .7, }, 500 );
	$("#twitter_btn img").mouseover(function(){
	  $(this).animate({ opacity: 1, }, 200 );
    })
	$("#twitter_btn img").mouseout(function(){
	  $(this).animate({ opacity: .7, }, 500 );
    })
	
	$(".work_thumb").animate({"opacity" :"0"}, 100);
	$(".work_thumb").fadeTo("slow", 0.6);
	$(".work_thumb").hover(function(){
	$(this).fadeTo("fast", 1.0);
	},function(){
	$(this).fadeTo("slow", 0.6);
	});

	
});
