$(document).ready(function(){
	if(!$('.comment_form_left #author').val())
	{
		$('.comment_form_left #author').val('Name');
	}
	if(!$('.comment_form_left #email').val())
	{
		$('.comment_form_left #email').val('Email');
	}
	if(!$('.comment_form_left #url').val())
	{
		$('.comment_form_left #url').val('Website');
	}
	if(!$('.comment_form_right #author').val())
	{
		$('.comment_form_right textarea#comment').val('Comment');
	}
	$(".dd_category_list h3").click(function(){
        $(this).next(".cat-description").slideToggle("slow");
	});
});
