/*About show control*/

$(document).ready(function() {
	
	$('.home_pics').cycle({
    	fx:    'fade', 
    	speed:    1000, 
    	timeout:  6000
 	});
	
	$('#col9').removeClass('loader');
	$('#home_show').css('visibility', 'visible');
	
});

// callback fired when each slide transition begins
function onBefore(curr,next,opts) {
    var $slide = $(next);
    var w = $slide.outerWidth();
    //var h = $slide.outerHeight();
    $slide.css({
        //marginTop: (234 - h) / 2,
		marginLeft: (693 - w)
    });
}
