var autoScroll=0;
var randomCheck=0;

$(document).ready(function() {
	$("#m1,#m2,#m3,#m4,#m5,#m6,#m7,#m8,#m9,#m10,#m11,#m12,#m13,#m14,#m15,#m16,#m17,#m18,#m19,#m20,#m21,#m22,#m23,#m24,#m25,#m26,#m27,#m28").fancybox({
		'titlePosition'	: 'over',
		'transitionIn'	: 'elastic',
		'transitionOut'	: 'elastic'
	});
	
	$("#products").accordion({header:"h2"});
	
	if (autoScroll!=0) {
		setInterval("nextSlide()",5000);
	}
	
	$('#wrapper a').each(function() {
		var x = $(this).html();
		$(this).attr("title",x);
	});
	
	$('div.mini').each(function() {
		$(this).hover(function() {
			$(this).addClass("hover");
		},function() {
			$(this).removeClass("hover");
		}).click(function() {
			$('#banner ul li').css("display","none");
			var x = $(this).attr("id");
			$('#b'+x).fadeIn("slow");
		});
	});
});

function nextSlide() {
	var x = Math.floor(Math.random()*8)
	if (randomCheck != x) {
		randomCheck=x;
		$('div.mini').eq(x).click();
	}
	else {
		nextSlide();
	}
}

function validate() {
	var name = document.getElementById('name');
	var email = document.getElementById('email');
	var phone = document.getElementById('phone');
	var message = document.getElementById('message');
	
	if (name.value == "" || email.value == "" || phone.value == "" || message.value == "") {
		return false;
	} else {
		return true;
	}
}
