$(document).ready(function(){
				$(".body_content").fadeIn(2000);
				$('#slideshow').cycle({
        		fx:     'fade',
        		prev: '#back',
        		next: '#next',
        		speed:  1500,
        		timeout: 0,
        		pager:  '#thumbs',
        		pagerAnchorBuilder: function(idx, slide) {
            	// return sel string for existing anchor
            	return '#thumbs li:eq(' + (idx) + ') a';}
    			});
				//Full Caption Sliding (Hidden to Visible)
				$('.header_wrapper').hover(function(){
					$(".sub", this).stop().animate({top:'30px'},{queue:false,duration:700,easing:'easeOutCubic'});
				}, function() {
					$(".sub", this).stop().animate({top:'-100px'},{queue:false,duration:700,easing:'easeOutCubic'});
				});
			});