// JavaScript Document

$(document).ready(function() {
	$('a[rel*=lightbox]').lightBox({
		overlayBgColor: '#000000',
		overlayOpacity: 0.6
	}); 
	$('#images').cycle({
		fx: 'fade', 
		speed:   2000, 
		timeout: 4000
	});
	update_cart();
});


/* Shop */
/***************************************************************************************************************/
function update_cart(prod_params) {
	jQuery.ajax({
		type: "POST",
		url: "/_scripts/cart.inc.php",
		data: prod_params,
		success: function(html){
			$("#shopping-cart").html(html);
		}
	});
	return false;
}
function change_size(select_obj, prod_id) {
	new_size = select_obj.options[select_obj.selectedIndex].value;
	document.location.href = "index.php?action=kasse&prod_id="+prod_id+"&change_size="+new_size;
}
function change_quantity(select_obj, prod_id) {
	new_quantity = select_obj.options[select_obj.selectedIndex].value;
	document.location.href = "index.php?action=kasse&prod_id="+prod_id+"&change_quantity="+new_quantity;
}
