﻿$(document).ready(function() {
	$("#manufacturersBox ul").newsticker();
	$(".product_image").fancybox({ 'overlayShow': true });
	$(".product_image_zoom").fancybox({ 'overlayShow': true });
	$(".additional_product_image").fancybox({ 'overlayShow': true });
	$(".fancybox a").fancybox({ 'overlayShow': true });
	
	$("input#addToCart").click(function(){
		$false = 0;		
		$("select").each(function(i){			
			if($(this).val() == ''){
				$false = 1;				
				alert("Bitte wählen Sie im Feld '"+$(this[0]).text()+"' eine Option aus.");
			}
		});
	  //alert("jo");
	if($false == 1)
	  return false;
	});	
});