$(document).ready(function(){
	
	// Sharethis code
	$(".share_this").each(function(i){
		
		var shareObj = SHARETHIS.addEntry({
							title 	: 'Share',
							url		: $(this).attr('rel')
							}, {
								button		: false,
								offsetLeft	: -256
						} );
		shareObj.attachButton( this );
		$(this).show();
		$(this).hover(
			function() {
				$(this).find("img").attr('src','/custom/images/button_sharethis_over.jpg');
			},
			function() {
				$(this).find("img").attr('src','/custom/images/button_sharethis.jpg');
			}
		);
		
	});
});

