/**
 * @author pbereut
 * 
 */
        jQuery(document).ready(function() {
            jQuery("#singleswitch").click(function() {
                jQuery("#content .post .entry-meta").hide();
                jQuery("#content .post .entry-content").hide();
                jQuery("#content .post .entry-teaser").hide();
				jQuery("#content .post").css({padding: '0.5em 0 0 0'});

		    });
            jQuery("#compactswitch").click(function() {
                jQuery("#content .post .entry-meta").show();
                jQuery("#content .post .entry-content").hide();
				jQuery("#content .post .entry-teaser").hide();
 				jQuery("#content .post").css({padding: '0.5em 0 0 0'});
           });
            jQuery("#fullswitch").click(function() {
                jQuery("#content .post .entry-meta").show();
                jQuery("#content .post .entry-content").show();
				jQuery("#content .post .entry-teaser").show();
				jQuery("#content .post").css({padding: '1.5em 0 2.5em 0'});
            });
        });
