$(document).ready(function() {	
	$('#top div.messages').cycle({
		fx: 'blindY',
		speed:  300,
		timeout:  5000
	});
	
	$('#showroom').cycle({
		fx: 'scrollHorz',
		timeout:  7500
	});

	$('#showroom_photos').cycle({
		fx: 'scrollHorz',
		timeout:  5500,
		pause: true,
        prev:    '#prev',
        next:    '#next'

	});
	    function pagerFactory(idx, slide) {
        var s = idx > 2 ? ' style="display:none"' : '';
        return '<li'+s+'><a href="#">'+(idx+1)+'</a></li>';
    };

	
	$('div.logos').cycle({
		fx: 'fade',
		timeout:  1000,
		random: 1
	});
	
	$('#hand').hover(function(){
		$(this).fadeOut(function(){
			$(this).remove();
		});
	});
	
	$('.comm').cycle({ 
    timeout: 0, 
    speed:   300, 
    startingSlide: 2 
	});
	
	$('#gallery a').lightBox();
});
