function swg_notifier_show()
{
	jQuery('.notifier_footer').slideDown("normal",'jswing')
}


function swg_notifier_hide()
{
	jQuery('.notifier_footer').slideUp("normal");
}


function swg_notifier_setcontent(content)
{
	jQuery("#notifier_footer_content").html(content);


}


function swg_notifer_setmouseover(id,content)
{
	jQuery("#"+id).hover
		(
			function () {
				swg_notifier_setcontent(content);
				swg_notifier_show();
				
			},
			function () {
				swg_notifier_hide();
				
			 }
		);

}

