// JavaScript Document


$(document).ready(function() {
function onAfter(curr, next, opts) {
    var index = opts.currSlide;
    $('#leftbtn')[index == 0 ? 'hide' : 'show']();
    $('#rightbtn')[index == opts.slideCount - 1 ? 'hide' : 'show']();
}

$('#slideshowImages').cycle({ 
    fx:     'scrollHorz', 
    speed:  400, 
    timeout: 0, 
    next:   '#rightbtn', 
    prev:   '#leftbtn', 
	after:   onAfter
});




$('#requestquote').click(function(e) {
    e.preventDefault();
	
	$('#quoteformbox').show('fast');
	$(this).hide();
});







 });

