// Common JS code.
$(document).ready(function() {
	$('.btn_see_clients.slide_clients a').click(function(e) {
		e.preventDefault();
		if ($('.btn_see_clients a').html() != 'Close') {
			$('.slideshow_clients_wrap').hide();
			$('.rc_more_clients').slideDown('fast');
			$('.btn_see_clients a').removeClass('more_down');
			$('.btn_see_clients a').addClass('more_up');
			$('.btn_see_clients a').html('Close');
		} else {
			$('.slideshow_clients_wrap').show();
			$('.rc_more_clients').slideUp('fast');
			$('.btn_see_clients a').removeClass('more_up');
			$('.btn_see_clients a').addClass('more_down');
			$('.btn_see_clients a').html('See more of our customers');
		}
	});

	$('.btn_back').click(function(e) {
		e.preventDefault();
		parent.history.back();
	});

	var $slides = $('.slideshow').cycle({
		fx: 'fade',
		timeout: 6000
	});

	var $slides_clients = $('.slideshow_clients').cycle({
		fx: 'fade',
		timeout: 6000
	});
});
