//Call Jquery
$(function(){
	$('.diamondHolder').hover(function(){
		$(this).addClass('diamondHover');
	},function(){
		$(this).removeClass('diamondHover');
	});
	
	$('#mainNav li ul li a:last').addClass('subNavLast');
	
	$("#imageGallery a img").each(function(){
	 var imgSrc = $(this).attr("src");
	 if(imgSrc == "")
	  $(this).remove();
	});
	
	//FIRE JEWELRY DETAIL CERTIFICATES
	$("a#jewelryCertificate").fancybox();
	
	//FIRE LOOSEDIAMOND DETAIL CERTIFICATES
	$("a.looseDiamondsCertificate").fancybox();
	
    //convert richtext popup images to fancybox images
    $("#content a").each(function(){
        var href = $(this).attr("href");
        if(href != undefined){
            var index = href.indexOf("viewImage");
            if(index > -1){
               href = href.replace("javascript:viewImage('", "");
               href = href.replace("')","");
               $(this).attr("href", href);
               $(this).addClass("single_image"); 
            }
        }
    });
    
    $("a.single_image").fancybox();
    //end convert richtext popup images to fancybox images	
	
});//End Jquery    	

