$(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.
	ld = vert OR horizontal //list directon - defaulted to horizontal
	*/

	//inset the socialbookmark link into the footer menu.

	if( typeof(window.socialbookmarksite) == 'undefined' )
	{
		window.socialbookmarksite = 'www.e3rec.com';
	}

	// retrieve the job title to be the bookmark title
	var jobTitle = document.getElementsByTagName('h1').item(0).firstChild.nodeValue;

	var sBookMarkLink = '<li class="socialBookmark fr"><a class="bookmark" href="http://'+window.socialbookmarksite+'/MOD/SB/index.php?ld=vert&amp;link=0&amp;use=digg,reddit&title=Job from Orgtel: '+jobTitle+'"  title="'+ window.SocialBookMarkLinkText +'">'+ window.SocialBookMarkLinkText +'</a></li>';
	$('ul.jobOptions 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;
			var iFrameHeight = 90;


			if( $.browser.msie )
			{
				//horrible ie position hack
				leftMargin = 225;
				iFrameHeight = 100;
			}
			$('body').prepend('<div id="sb"></div>');
  			$('#sb').html('<h1>'+window.bookmarkTitle+'</h1><iframe id="" frameborder="0" scrolling="no" src="'+$(this).attr('href')+'" width="150" height="'+iFrameHeight+'"></iframe>');
			$('#sb').css('marginTop',(postion.top + 22));
			$('#sb').css('marginLeft',leftMargin);
			$('#sb').fadeIn('fast');
		}
		return false;
	})
});