// execute your scripts when the DOM is ready. this is mostly a good habit
$(document).ready(function() {

	// initialize scrollable
	$(".scrollable").scrollable();
	$("#scroller").scrollable({circular: true}).autoscroll({ autoplay: true, interval: 8000 });
	
	// validate
	// $("#ContactForm1").validate();
	
	// tooltip
	$(".info-tooltip").tooltip({ effect: 'slide'});
	$(".info img[title]").tooltip();
	
	
	// lightbox
	$('.items').each(function() {
   $(this).find('a[rel*=lightbox]').lightBox();
 });
    // cycle
	    $('.rotate').cycle({
		fx: 'fade'
	});
	/* VALIDATION ON CONTACT FORM */
    $("#quote1, #contact1").validate();

});





