// JavaScript Document


$(document).ready(function () {
	if($("div#jewelgrid img").length)
	{
		fadeInImages(0);
	}
});


function fadeInImages(index){
	if(index < $("div#jewelgrid img").length)
	{
		img = $("div#jewelgrid img")[index];	
		$(img).fadeIn("slow");
		index++;
		setTimeout("fadeInImages("+index+")",50);
	}
	else
	{
		$("div#jewelgrid a").each(function(i){
			if($(this).attr('href') == document.location.pathname){
				$(this).addClass('activeJewel');
			}
		}); 
		
		setTimeout("fadeBar()",2000);
		//return;
	}
}