$(document).ready(function() {
				$('#content_outer_wrapper').css("background", "#000000");
				$('#header_bg').children().fadeOut(2000);
				$('#content_outer_wrapper').animate({ height: "550px" }, 2000);
				$('#header_bg').animate( { height: "0px" }, 2000, function () {
					$('#content_outer_wrapper').animate({ backgroundColor: "#131313"}, 1000, function () {
						$('#slider').animate({ opacity: "1"}, 2000)
				});
				});
				
				$('#slider').cycle({
					fx: 'scrollUp',
					easing: 'easeInOutExpo',
					timeout: 6000
				}); 
			
			});