	$(document).ready(function(){


	$('#twitter').tipsy({gravity: 's'});
	$('#facebook').tipsy({gravity: 's'});
	   
	$('#apply_now').hover(function(){

		$(this).attr('src', 'img/apply_now_btn_hover.gif');

	}, function(){

		$(this).attr('src', 'img/apply_now_btn.gif');
	
	});
	$('#learn_more').hover(function(){

		$(this).attr('src', 'img/learn_more_btn_hover.gif');

	}, function(){

		$(this).attr('src', 'img/learn_more_btn.gif');
	
	});	
});	