
$(document).ready(function() {
                $('#newBlog').css("display", "none");
            })



$(document).ready(function() {
        $('#hide').bind(
            'click',
            function() {
                $('#newBlog').css("display", "none");

            })
    })

$(document).ready(function() {
        $('#show').bind(
            'click',
            function() {
                $('#newBlog').show({speed:1000});
            })
    })


$(document).ready(function() {
        $('.post_reply').bind(
            'click',
            function(){
                $('.new_comment').css("display", "block");
                $('.new_comment').show({speed:1000});
                $('.post_reply').hide();
            })
     })



$(document).ready(function(){
                $('.new_comment').css("display", "none");
     })








/*
$(document).ready(function() {
                $('.blog').hide();
            })




$(document).ready(function() {
        $('.blog_title').bind(
            'click',
            function() {
                $('.blog').show({speed:1000});
            })
    })
*/

  $(document).ready(function(){
    $("#accordion").accordion({
		active:'#last_blog',
		collapsible: true,
		icons: {
    		header: "ui-icon-plusthick",
   			headerSelected: "ui-icon-minusthick"
		},
		autoHeight: false
	});
  });