$(document).ready(function(){ 


	/////////////////////////////////////////////////////////////
	///// sieraad rollover
	/////////////////////////////////////////////////////////////

	$('ul.collectiemenu li a').hover(function() {
	
		var getrel = $(this).attr('rel');
		$('#snapshot').attr('src','3_IMAGES/1_BIGVISUALS/collectie-'+getrel+'.png');	
		
	});
	
	/////////////////////////////////////////////////////////////
	///// Set sliders
	/////////////////////////////////////////////////////////////
	
	var selectors = [ 
		[ 
			'.anythingsliderdiv',
			900, 
			270,
			"normal"
		],
		[
			'.anythingsliderdivspecials',
			900, 
			100,
			"specials"
		]
		
	];
	
	jQuery.each(selectors, function() {	

		var selector	= this[0];
		var width 	= this[1];
		var height	= this[2];
		var theme	= this[3];
		
		$(selector).anythingSlider({
			width               : width,
			height              : height,
			autoPlay			: false,
			hashTags			: false,
			theme		 		: theme,
			easing				: "swing",
			forwardText         : "Volgende", 
			backText            : "Vorige",
			navigationFormatter : function(i, panel){
				return ['', '', '', '', '', ''][i - 1];
			}
		})
	
	});
	
	
});

	/////////////////////////////////////////////////////////////
	///// load juwelry
	/////////////////////////////////////////////////////////////
	
	function loadjuwelry(collection,sieraad)
	{
		if(collection == 'special')
		{ var special = 'specialsieraad';}
		else { var special = 'sieraad';}
		
		$.ajax
		({
			url: "8_BUSINESSLOGIC/buildjuwelry.php?load=getjuwelryhtml&"+special+"="+sieraad,
			beforeSend: function(){
				$('#maincontentbox').html('<div class="loadingdiv"><img src="3_IMAGES/loader.gif" alt="loading"/></div');
			},
			success: function(msg)
			{
				$('#maincontentbox').append(msg);
				$('.fader').hide();
				$('.fader').fadeIn();
				$('.loadingdiv').fadeOut('slow', function(){ $('.loadingdiv').remove();});
				
			}
		});
		
	}
