$(document).ready(function() {

	/*
	useage:
	link=0 // bookmark the page you're on
	link=1 // bookmark the site
	use=digg,reddit, //etc if you  want to use more than default delicious bookmark option.
	*/

	//inset the socialbookmark link into the footer menu.



	if( typeof(window.socialbookmarksite) == 'undefined' )
	{
		window.socialbookmarksite = 'www.e3rec.com';
	}

	var sBookMarkLink = '<li class="socialBookmark"><a href="http://'+window.socialbookmarksite+'/MOD/SB/index.php?link=1&amp;use=digg,reddit&title='+window.bookmarkPageTitle+'"  title="'+ window.SocialBookMarkLinkText +'">'+ window.SocialBookMarkLinkText +'</a></li>';
	$('div#footer ul li.sb').after(sBookMarkLink);

	$( 'li.socialBookmark a').click(function(){

		if( $('#sb').attr('id') == 'sb')
		{
			$('#sb').fadeOut('fast',function(){
				$('#sb').remove();
			})
		}
		else
		{
			var postion = $(this).position();
			var leftMargin = postion.left;

			if( $.browser.msie )
			{
				//horrible ie position hack
				leftMargin = (leftMargin - 180);

			}
			$('body').prepend('<div id="sb"></div>');
  			$('#sb').html('<h1>'+window.bookmarkTitle+'</h1><iframe id="" frameborder="0" scrolling="no" src="'+$(this).attr('href')+'" width="300" height="40"></iframe>');
			$('#sb').css('marginTop',(postion.top - 73));
			$('#sb').css('marginLeft',leftMargin);
			$('#sb').fadeIn('fast');
		}
		return false;
	})
});