function randomImages() {
	$('body.home #photos').cycle({
		fx: 'fade',
		pause: '1',
		// random: '1',
		timeout: '20000'
	});
}

function randomSlogans() {
	$('#slogans').cycle({
		fx: 'fade',
		pause: '1',
		random: '1',
		timeout: '10000'
	});
	/*@cc_on
	$('#slogans em').css('background', 'transparent');
	@*/
}

function gallery() {
	$('#gallery a, #main a.photo').lightBox({
		fixedNavigation:true
	});
}

function bookAppointment() {
	$('#book-appointment').submit(function() {
		alert('We will contact you as soon as possible.');
	});
}

$(document).ready(function() {
	randomImages();
	randomSlogans();
	if($('body.about')[0]) {
		gallery();
	}
	if($('body.book-appointment')[0]) {
		bookAppointment();
	}
});


