/* <![CDATA[ */
			
if(! ($.browser.msie && ($.browser.version == "6.0")) ) {			

        $('<p id="message"/>')
            .append('<img src="img/load.gif" alt="loading..."/> please wait while the images load...')
            .insertAfter('h1');
        
        
        $('div#inspection ul li img').css({
            
            opacity: 0,
            height: 0,
            width: 0
            
        }).whenLoaded(function(){
		
		        
            $('#message').slideUp(function(){
                $(this).remove();
				$('.more').fadeIn(1000, function(){
				$('#more').fadeIn(2500);								 
				});

            });
            
            var all = $(this);
            
            function fadeIn(i) {
                if(!all[i]) { return; }
                $(all[i]).animate({
                    opacity: 1,
                    height: '75px',
                    width: '100px'
                },150);
                setTimeout(function(){
                    fadeIn(i+1);
                },100);
            }
            
            fadeIn(0);
			
        
        });
		
    
    /* ]]> */

}

if(! ($.browser.msie && ($.browser.version == "6.0")) ) {
//	OPACITISE ALL OTHER IMAGES WHEN ONE SELECTED..
	$(document).ready(function() {
	//area 1
	$('.fade-area-1').children().hover(function() {
		$(this).siblings().stop().fadeTo(250,0.5);
	}, function() {
		$(this).siblings().stop().fadeTo(400,1);
	});	
	});
}
