/*
facebook_box animate script by vonTrompka 2011
*/


jQuery(document).ready(function($) {
	$("#facebook_box").hover(
	function (){
		$(this).animate({ height: "225" }, {queue:false, duration:"normal"} );
		/*$("#rss_box").animate({ top: "225" }, {queue:false, duration:"normal"} );*/
		document.getElementById('vt_mainmenu').style.zIndex='-1';
		$("#sidebar").animate({ marginTop: "130" }, {queue:false, duration:"normal"} );
	},
	function (){
		$(this).animate({ height: "35" }, {queue:false, duration:"normal"} );
		/*$("#rss_box").animate({ top: "0" }, {queue:false, duration:"normal"} );*/
		document.getElementById('vt_mainmenu').style.zIndex='auto';
		$("#sidebar").animate({ marginTop: "0" }, {queue:false, duration:"normal"} );
	});


	/*$("#facebook_box_single").hover(
	function (){
		$(this).animate({ height: "225" }, {queue:false, duration:"normal"} );
		$("#rss_box").animate({ top: "225" }, {queue:false, duration:"normal"} );
		document.getElementById('vt_mainmenu').style.zIndex='-1';
		$("#sidebar").animate({ marginTop: "90" }, {queue:false, duration:"normal"} );
	},
	function (){
		$(this).animate({ height: "35" }, {queue:false, duration:"normal"} );
		$("#rss_box").animate({ top: "0" }, {queue:false, duration:"normal"} );
		document.getElementById('vt_mainmenu').style.zIndex='auto';
		$("#sidebar").animate({ marginTop: "0" }, {queue:false, duration:"normal"} );
	});
	
	$(window).scroll(
	function () { 
        $("#facebook_box_single").animate({ height: "35" }, {queue:false, duration:"normal"} );
		$("#rss_box").animate({ top: "0" }, {queue:false, duration:"normal"} );
		document.getElementById('vt_mainmenu').style.zIndex='auto';
		$("#sidebar").animate({ marginTop: "0" }, {queue:false, duration:"normal"} );
    });*/
});



