// JavaScript Document
$(function(){
	
	$(".social").hover(	function(){ $(this).animate({	opacity: 1 }, 400); },
											function(){ $(this).animate({	opacity: .5 }, 400); } );
	
		$("#twitter-container").hover(	function(){ $(this).animate({	opacity: 1 }, 400); },
																		function(){ $(this).animate({	opacity: .6 }, 400); } );
	


	$('.contact-link').attr('href','mailto:gercekk@gmail.com');

});
