google.load("jquery", "1");
google.load("jqueryui", "1");

google.setOnLoadCallback(function() {

	debug = new gravDebug(true, false);
	
	if ( $("#orderForm").length ) {
		order.init();
	}
	
	if ( $("#registerForm").length ) {
		register.init();
	}
	
	if ( $("#login-form").length ) {
		userLogin.init();
	}
	
	if ( $("#delivery-check-form").length ) {
		deliveryCheck.init();
	}
	
	$(".slider-1").rotator( { tranSpeed: 700, delay: 6000 } );
	
	$('.img-container a').lightBox(); // Select all links that contains lightbox in the attribute rel
});


