/**
 * © Skinik
**/
jQuery(document).ready(function() {

/***/
    jQuery("#container li:first-child").addClass("first");
    jQuery("#container li:last-child").addClass("last");

    jQuery("#container .block:first-child").addClass("first");
    jQuery("#container .block:last-child").addClass("last");

    jQuery("#container #sidebar").find("div.block").each(function(i) {
	jQuery(this).addClass("block-" + i );
    });
/***/


});

