// JavaScript Document

$(document).ready(function() {
					   
	//information('out');
	var t=setTimeout("information('out')",3000)
						   
});

var slide_pos = 'in';

function information(direction) {
	
	if (direction=='out' || slide_pos=='in' ) {
		
		//$("#retracto .content").fadeIn('fast');
		//$("#retracto .links").fadeIn('fast');
		$("#retracto .container table").animate({marginLeft:"0px"},600,'linear',function () { slide_pos = 'out'; });
		$('.slideshow').cycle('pause');
		
		
	}else{
		
		//$("#retracto .content").fadeOut('slow');
		//$("#retracto .links").fadeOut('slow');
		$("#retracto .container table").animate({marginLeft:"-700px"},600,'linear',function () { slide_pos = 'in'; });
		$('.slideshow').cycle('resume');
	}
	
}

