$(document).ready(function() { 
	
	$('.post_related').hide();
	
	$('.index_video').hover(function(){
        $(".index_video_title", this).hide(160);
		$(".index_video_caption", this).animate({top:'0'},{queue:false,duration:160});
		
    }, function() {
        $(".index_video_caption", this).animate({top:'250px'},{queue:false,duration:300});
		$(".index_video_title", this).show(160); })
	
	$('.index_webdesign').hover(function(){
        $(".index_webdesign_title", this).hide(160);
		$(".index_webdesign_caption", this).animate({top:'0'},{queue:false,duration:160});
		
    }, function() {
        $(".index_webdesign_caption", this).animate({top:'300px'},{queue:false,duration:300});
		$(".index_webdesign_title", this).show(160); })
	
	$(function()
{
	$('.index_video_caption_excerpt').jScrollPane();
	$('.index_webdesign_caption_excerpt').jScrollPane();
	$('.post_content_video').jScrollPane();
	$(".network .post_content").columnize({columns: 2, balanced: false, dontsplit: "p" });
	
	$(".scrollable").scrollable({circular: true, mousewheel: false}).navigator().autoscroll({
			interval: 6000,
			autopause: true 
		});
});




	
	})
	
<!--Posizione Footer !-->	
$("document").ready(function() {
					
	$('#content').css('minHeight', $(window).height() - $('#header').outerHeight(true) - $('#footer').outerHeight(true) -30);
	$('#single_column_top').css('minHeight', ($(window).height() - $('#header').outerHeight(true) - $('#footer').outerHeight(true) - $('#single_column_content').outerHeight(true) )/2);
	$('#contentList').css('minHeight', $(window).height() );
	
	 });
			   
	
	$(window).resize(function () {
	
	$('#content').css('minHeight', $(window).height() - $('#header').outerHeight(true) - $('#footer').outerHeight(true) -30);
	$('#single_column_top').css('minHeight', ($(window).height() - $('#header').outerHeight(true) - $('#footer').outerHeight(true) - $('#single_column_content').outerHeight(true) )/2);
	$('#contentList').css('minHeight', $(window).height() );
	
	 });

	 
