$(".twittershare").each(function(i,elem){
	var social_link="http://twitter.com/share?url=";
	var link=$(elem).attr("href");
	if (link=="")
		link="http://"+SITE_DOMAIN+"/";
	social_link+=encodeURIComponent(link)
	social_link+="&via=MidlandsCareers";
	social_link+="&text="+encodeURIComponent($(elem).attr("rel"));
	$(elem).removeAttr("rel");
	$(elem).attr("href",social_link);
	$(elem).attr("onClick","javascript:window.open('"+social_link+"','','scrollbars,resizable,screeny=top,width=600,height=450,left=350,top=150');return false;");
});
$(".facebookshare").each(function(i,elem){
	var social_link="http://facebook.com/sharer.php?u=";
	var link=$(elem).attr("href");
	if (link=="")
		link="http://"+SITE_DOMAIN+"/";
	social_link+=encodeURIComponent(link)
	social_link+="&t="+encodeURIComponent($(elem).attr("rel"));
	$(elem).removeAttr("rel");
	$(elem).attr("href",social_link);
	$(elem).attr("onClick","javascript:window.open('"+social_link+"','','scrollbars,resizable,screeny=top,width=600,height=450,left=300,top=150');return false;");
});

