$(document).ready(function() {
	
    $(".link-3col a:first-child").addClass("first-link");
	
    $(".link-3col-content img:first-child").addClass("first-img");
	
    $(".td-for-content .clear-float:last").addClass("clear");
	
    $(".editor div:first").addClass("newbb");
	
    $(".fix-b div:first").addClass("newbb2");
	
	$('.prevvv').hover(
        function() {
            $(this).find('.hidden-shortstory').fadeIn(200);
			
        },
        function() {
            $(this).find('.hidden-shortstory').fadeOut(200);        
            
        }
    );
	
	// Expand Panel
	$(".top-hiiden-open").click(function(){
		$(".top-hiiden-block-panel").slideDown("slow");
	});	
	
	// Collapse Panel
	$(".top-hiiden-close").click(function(){
		$(".top-hiiden-block-panel").slideUp("slow");	
	});		
	
	
	$(".toggle div").click(function () {
		$(".toggle div").toggle();
	});		
	
});

