$(document).ready(function() {
	if ($('#gallery').length) {
		$('#gallery').cycle({
			fx: 'fade',
			timeout: 5000
		});
	}
	
	if ($('#services').length) {
		$('ul#services li.service > a').fancybox({titlePosition: 'inside'});
	}
	
	if  ($('#products').length) {
		$('#products').masonry({ singleMode: true });
	}
}); 
