// *************************** jQuery Initialisation **************************** //

$(document).ready(function() {

// mouse over images
$('.productZoom').imghover();

$("#brochure .tab").hover( function () {
	$(this).addClass("hover");
}, function () {
	$(this).removeClass("hover");
} );

// Select all links with class thickbox
$('.lightbox').lightBox({fixedNavigation:true}); 
//$('a[rel^=lightbox]').lightBox();


$('#printedBrochure').click(function(){
	$('#downloadBrochures').hide();
	$('#printedBrochures').show();
	$('#downloadBrochure').removeClass('active');
	$(this).addClass('active');
});
$('#downloadBrochure').click(function(){
	$('#printedBrochures').hide();
	$('#downloadBrochures').show();
	$('#printedBrochure').removeClass('active');
	$(this).addClass('active');
});

});
