$(document).ready(function(){
	
	/**
	 * Twitter
	 */
	$("#twitter a, li.twitter a, .twitterLink a").click(function() {
		var url = String(window.location);
		var status = encodeURIComponent($(this).attr('rel') + " " + url);
		
		$(this).attr('target', '_blank');
		$(this).attr('href', 'http://twitter.com/?status=' + status);  
	});
	$("li.twitter_href a").click(function() {
		if (this.href.lastIndexOf('twitter.com') == -1) {
			var url = this.href;
			var status = encodeURIComponent($(this).attr('rel') + " " + url);
			
			$(this).attr('target', '_blank');
			$(this).attr('href', 'http://twitter.com/?status=' + status);
		}
	});

});
