$(function(){
	
	$(".fullstory").each(function(index) {
    	
    	var currentEl = $(this).clone();
    	var firstClassTmp;
    	var secondClassTmp;
    	
    	if($(this).hasClass('fullstory_plus')) {
    		firstClassTmp = 'plus';
    	}else {
    		firstClassTmp = 'up';
    	}
    	
    	$(this).replaceWith("<div class='fullstory_click_e'><div class='fullstory_image fullstory_e_e_" + firstClassTmp + "'>" + $(currentEl).attr('title') + "</div><div class='fullstory_e'>" + $(currentEl).html() + "<div></div>");
  	});
  	
  	$('.fullstory_click_e').click(function(){

 		if($('.fullstory_image',this).hasClass('fullstory_e_e_plus')) {
 			secondClassTmp = 'minus';
 		}else {
 			secondClassTmp = 'down';
 		}
 		
		$('.fullstory_e',this).toggle();
		$(this).children().first().toggleClass('fullstory_e_e_' + secondClassTmp);
	});
});
