// Javascript

$(document).ready(function ()
{	
	$("head").prepend("<link rel='stylesheet' type='text/css' href='http://mspayup.com/clientApi/fbLike/css/styles.css'/>");
	$("body").prepend("<a href='http://www.mourlamstudios.com' target='_blank'><div id='fbLike'><iframe src='http://www.facebook.com/widgets/like.php?href=" + fbLikeLink + "&layout=button_count' scrolling='no' frameborder='0'style='border:none; width:125px; height:80px;padding-top: 5px;padding-left: 5px;'></iframe></div></a>");
	
	$(window).resize(function() { fbLikeResize(); });
	fbLikeResize();
	
	//$("#fbLike").animate({"opacity":"0.75"},0);
	
	//$("#fbLike").hover(function(){fbLikeOver();},function(){fbLikeOut();});
});

function fbLikeResize()
{
	var msWinWidth = $(window).width();
	var msWinHeight = $(window).height();
	
	
	$("#fbLike").css("top",msWinHeight-30);
	$("#fbLike").css("left",msWinWidth-215);
}

function fbLikeOver()
{
	$("#fbLike").stop().animate({"opacity": "1"}, "normal");
}

function fbLikeOut()
{
	$("#fbLike").stop().animate({"opacity": "0.75"}, "normal");
}