$(document).ready(function(){
	/* make us a round button */
	$('.rounded').corners("4px");
	
	$("div.rounded").mouseover(function () {
	  $(this).addClass("arrowimage");
	 });
	
	$("a.invite-friends-button").mouseover(function () {
	  $(this).addClass("arrowlink");
	 });
	
  $("div.rounded").mouseout(function () {
	  $(this).removeClass("arrowimage");
	});
	$("a.invite-friends-button").mouseout(function () {
	  $(this).removeClass("arrowlink");
	});
	
});