	
	
	jQuery(document).ready(function($){		
		
		/** Flash replacement */
		$("#flash_shop").flash({ 
			  src: 'http://www.schrobbeler.nl/c.assets/default/flash/assortiment/3d_viewer.swf',
			  width: 630,
			  height: 380,
			  wmode: 'transparent',
			  flashvars: { configFVar: 'http://www.schrobbeler.nl/c.assets/default/flash/assortiment/lib/config.xml',
			  menuListFVar: 'http://www.schrobbeler.nl/c.assets/custom.scripts/resource.carousel.xml.php' }
			}
		);	
			
		// hide all overview items
		hideall();
		
		// show first
		jQuery(".shop-overview:first").show();
		
		//showall();
		
		
	});	
	
	function hideall(){
		jQuery(".shop-overview").hide();
	}
	function showall(){
		jQuery(".shop-overview").show();
	}
	
	// load action for calling assortiment items
	function showAssortimentItem (id){
		if(jQuery("#" + id)){
			jQuery(".shop-overview").not("#" + id).hide(); 
			jQuery("#" + id).show();
		}		
	}

