/* **
 * Blob SocialBar v0.1
 * By Amos Vryhof
 *
 * A social media integration and user management system for your website.
 *
 * This software is licensed under the Creative Commons Attribution-ShareAlike 3.0 Unported (CC BY-SA 3.0) license
 * For the termns of this license, and legal requirements, please see -
 *  * http://creativecommons.org/licenses/by-sa/3.0/
 *  * http://creativecommons.org/licenses/by-sa/3.0/legalcode
 */
/* Configuration */
(function ( $ ) {


})( jQuery );

 $(document).ready(function () {
	var dtitle = document.title
	var durl = window.location;
	
	var fbhref = "http://www.facebook.com/sharer.php?u=" + durl;
	var twithref = "http://twitter.com/home?status=" + dtitle + " - " + durl;
	
	$("#socialbar .facebook a").attr("href",fbhref);
	$("#socialbar .twitter a").attr("href",twithref);
});
