// Javascript

$(document).ready(function ()
{
	$("head").prepend("<link rel='stylesheet' type='text/css' href='http://mspayup.com/clientApi/msFooter/css/styles.css'/>");
	$("body").prepend("<a href='http://www.mourlamstudios.com' target='_blank'><div id='msFooter'>Mourlam Studios Creation</div></a>");
	
	$(window).resize(function() { msFooterResize(); });
	msFooterResize();
	
	//$("#msFooter").animate({"opacity":"0.75"},0);
	
	//$("#msFooter").hover(function(){msFooterOver();},function(){msFooterOut();});
});

function msFooterResize()
{
	var msWinWidth = $(window).width();
	var msWinHeight = $(window).height();
	
	
	$("#msFooter").css("top",msWinHeight-30);
	$("#msFooter").css("left",msWinWidth-130);
}

function msFooterOver()
{
	$("#msFooter").stop().animate({"opacity": "1"}, "normal");
}

function msFooterOut()
{
	$("#msFooter").stop().animate({"opacity": "0.75"}, "normal");
}