// JavaScript Document
function fbs_click(u) {
	t=document.title;
	window.location='http://www.facebook.com/share.php?u='+encodeURIComponent(u)+'&t='+encodeURIComponent(t);
	return false;
}
	
function checkMeta(mn) {
	var metas = document.getElementsByTagName('meta');
	var i;
	for (i = 0; i < metas.length; i++)
		if (metas[i].getAttribute('name') == mn)
		break;
	var TestVar = metas[i].getAttribute('content');
	return TestVar;
}
	
function strpos( haystack, needle, offset){ 
    var i = (haystack+'').indexOf(needle, (offset ? offset : 0));
    return i === -1 ? false : i;
}

function load_bookmark() {
	var temp_url = location.href;
	var title = checkMeta('title');
	
	if(strpos(temp_url,'wexclusive',0)) var url ='http://www.weloveshopping.com/2009/wexclusive/';
	else url = temp_url;

html = "<table id='bookmark' width='203' height='29' border='0' cellpadding='0' cellspacing='0'><tr><td>";
	
	html += "<img src='http://www.weloveshopping.com/2009/static/images/icon/share/share_slice_bg_01.jpg' width='66' height='29' alt=''></td>";
	
	html += "<td><a href='http://del.icio.us/post?v=2&amp;url="+url+"&amp;title="+title+"' title='Del.icio.us' target='_blank'><img src='http://www.weloveshopping.com/2009/static/images/icon/share/share_slice_bg_02.jpg' width='20' height='29' alt=''></a></td>";
	
	html += "<td><a href='http://digg.com/submit?phase=2&amp;url="+url+"&amp;title="+title+"' title='Digg' target='_blank'><img src='http://www.weloveshopping.com/2009/static/images/icon/share/share_slice_bg_03.jpg' width='19' height='29' alt=''></a></td>";
	
	html +="<td><a href='javascript:void(0);' onclick='javascript:fbs_click(\""+url+"\");'><img src='http://www.weloveshopping.com/2009/static/images/icon/share/share_slice_bg_04.jpg' width='20' height='29' alt=''></a>";

	html += "<td><a href='http://twitter.com/home/?status="+title+" "+url+"' title='Twitter' target='_blank'><img src='http://www.weloveshopping.com/2009/static/images/icon/share/share_slice_bg_05.jpg' width='19' height='29' alt=''></a></td>";
	
	html += "<td><a href='http://www.google.com/bookmarks/mark?op=edit&output=popup&bkmk="+url+"&title="+title+"' title='Google' target='_blank'><img src='http://www.weloveshopping.com/2009/static/images/icon/share/share_slice_bg_06.jpg' width='18' height='29' alt=''></a></td>";
	
	html += "<td><a href='http://reddit.com/submit?url="+url+"&amp;title="+title+"' title='Reddit' target='_blank'><img src='http://www.weloveshopping.com/2009/static/images/icon/share/share_slice_bg_07.jpg' width='18' height='29' alt=''></a></td>";
	
	html += "<td><a href='http://www.mixx.com/submit?page_url="+url+"&amp;title="+title+"' title='Mixx' target='_blank'><img src='http://www.weloveshopping.com/2009/static/images/icon/share/share_slice_bg_08.jpg' width='25' height='29' alt=''></a></td>";
	
	html += "</tr></table>";
	document.write(html);
}
