function showSub() {
	$('#producten').click(function() {
		if( $('#submenu').is(':hidden') ) $('#submenu').fadeIn();
		else $('#submenu').fadeOut();
	});
}

function initGallery() {
	$('#slideshow').cycle({ 
		fx:     'fade',
		timeout: 5000,
		random: 1,
		speed: 2000,
		min: 1
	});
}

function hoverProduct() {
	$('.hover_bg').css('opacity','0.5');
	$('.product_wrapper').hover(function() {
		$(this).children('.hover_bg').show();
	},function() {
		$(this).children('.hover_bg').hide();   
	});
}

function slideShow() {
	$('#show').cycle({ 
	    cleartypeNoBg: 'true', 
		fx:     'fade',
		timeout: 5000,
		random: 1,
		speed: 2000,
		min: 1
	});
}

function initLightbox() {
	$('.product_img a').each(function() {
		var href = $(this).attr('href');
		$(this).parent().parent().parent().attr('href',href);
	});
	if($.browser.msie && $.browser.version == "6.0"){
		$('.product_wrapper').click(function(){
			alert('De browser waar u gebruik van maakt is erg verouderd. Update a.u.b. naar een nieuwere browser');									 
		});
	} else {
		$('.product_wrapper.lb').lightBox();
		$('#lightbox-container-image-box').corner();
	}
}
