$(document).ready(function(){
	externalLinks();
	initGallery();
	hoverProduct();
	initLightbox();
	showSub();
});
function externalLinks() {
	$("a[rel='external']").click(function() {
		window.open($(this).attr('href'));
		return false;
	});
}
function showSub() {
	$('#producten').click(function() {
		if( $('#submenu').is(':hidden') ) $('#submenu').fadeIn();
		else $('#submenu').fadeOut();
	});
}
function initGallery() {
	$('#slideshow').cycle({ 
		fx:     'fade',
		timeout: 1000,
		speed: 2500
	});
}
function hoverProduct() {
	$('.hover_bg').css('opacity','0.5');
	$('.product_wrapper').hover(function() {
		$(this).children('.hover_bg').show();
	},function() {
		$(this).children('.hover_bg').hide();   
	});
}
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').lightBox();
		$('#lightbox-container-image-box').corner();
	}
}
