$(document).ready(function(){
	$('.entry').hover(function(){
		$('.entryDetails',this).fadeIn(200);
	}, function() {
		$('.entryDetails',this).fadeOut(200);
	});
	
	$(".entryDetails").click(function(){
		window.location=$(this).find("a").attr("href");return false;
	});
	
	$(".showToot").click(function(){
		$(".addToot").slideToggle();
	});
	
	$(".clearForm").formclear();
	
	$('#comment').click(function(){
		$('.addComments').slideToggle();
	});
});

	
tweetmeme_source = 'weetstraw';
tweetmeme_style = 'compact';

var RecaptchaOptions = {
   theme: 'custom',
   lang: 'en',
   custom_theme_widget: 'recaptcha_widget'
};