

$(document).ready(function() {
    $(".fancybox").fancybox({
        'transitionIn'	:	'elastic',
        'transitionOut'	:	'elastic',
        'easingIn'      : 'easeOutBack',
        'easingOut'     : 'easeInBack',
        'titlePosition'	: 	'over',
        'changeSpeed'	:	1000,
        'overlayOpacity'	: 	0.2
    });
        
    //CODE TEMPLATE
    $('#top-nav ul li:last a').css('background', 'none');
    $('#sidebar .box:last-child').css('padding-bottom', '0');
    $('#sidebar .box li:last-child a').css('margin-bottom', '0').css('border', 'none');
    $('.post:last').css('border', 'none').css('padding-bottom', '0px');
    $('#page .post').css('margin-bottom', '0');
    //Pans, Just for show :)
    if (screen.width <= 1024) {
	$('#pans').css('right', '0%');
    }        
});

