jQuery.fn.toggleFull = function(entry_id) {
	var container = jQuery(this);
	var full = $("#e"+entry_id).children('.entry-full');
	
	// toggle entry class
	$("#e"+entry_id).toggleClass('selected-entry').toggleClass('light').end();
    // toggle thumb
    $("#e"+entry_id).children('.entry-detail-frame').toggle().end();
    //toggle mini
	$("#e"+entry_id).children('.entry-mini').toggle().end();
    //toggle full
	full.toggle().end();
	// toggle arrows
	$("#e"+entry_id).children('.entry-arrow').children('a').children('img').toggle().end();
	
	if (full.html() == '') {
		$("#e"+entry_id).children('.entry-full').html(
			'<div style="text-align: center; margin: 30px;">Proszę czekać...<br /><img src="/img/loader.gif" alt="" style="border: 0;"/></div>'
			);
		$("#e"+entry_id).children('.entry-full').load("/battle_entries/view/"+entry_id);
	}
	
	return (this);
}