function showSubmenu(){
	$('.menu .item').hover(function(){
		$(this).children('.submenu').toggle();
	});
}

function initSlideshow() {
	$('#cycle').cycle({
		fx:     'fade',
		timeout: 5500,
		speed:	 1500,
		next:   '#next', 
		prev:   '#prev'
	});
}

function getProductTitle() {
	var sProduct = $('.product_titel').attr('id');
	$('#auto_fill').val(sProduct);
}

//function rollover(id,actie) {
//	if(actie == 'roll') {
//		document.getElementById(id).src = 'images/logo_'+ id +'.gif';
//	} else {
//		document.getElementById(id).src = 'images/logo_'+ id +'_normal.gif';
//	}
//}

//function submenu(id, actie) {
//	if(actie == 'show') {
//		document.getElementById(id).style.display = 'block';
//		document.getElementById(id+'_knop').className = 'active';
//	} else {
//		document.getElementById(id).style.display = 'none';
//		document.getElementById(id+'_knop').className = '';
//	}
//}
