jQuery(function() {
	// Initiate Lightbox for certain elements
	$(".slides a").lightBox(); // Select all links in object with gallery ID
	// Start slideshow for this page

	$(".menu a").click(function(){
		// Get current page title in a variable
		var pageid = $(this).attr('id');
		// Hide all other pages
		$("#bizarfashion .page").not("#"+pageid+"_content").fadeOut('slow');
		// Show page with this id
		$("#bizarfashion #"+pageid+"_content").fadeIn('slow');
		// Stop all slideshows on other pages
		$("#bizarfashion .slides").not("#"+pageid+"_content .slides").cycle('stop');
		// Start slideshow for this page
		$("#bizarfashion #"+pageid+"_content .slides").cycle({
			fx: 'fade',
			speed: 2500,
			timeout: 1000
		});
		return false;
	});
});


