// Adds a class 'js_on' to the <html> tag if JavaScript is enabled,
// also helps remove flickering...
document.documentElement.className += 'js_on';


// Add Cufon fonts fix IE 7
Cufon.set('fontFamily', 'Helvetica Neue LT Pro');
Cufon.replace('h1', { fontFamily: 'Helvetica Neue LT Pro' });
Cufon.replace('h2', { fontFamily: 'Helvetica Neue LT Pro' });
Cufon.replace('h3', { fontFamily: 'Helvetica Neue LT Pro' });

 jQuery(function () {
			jQuery('#Main img').hide();
			});
			var i = 0;
			var int=0;
jQuery(window).bind("load", function() {
				var int = setInterval("imgLoader(i)",500);
			});
			
function imgLoader() {
				var images = jQuery('#Main img').length;
				if (i >= images) {
					clearInterval(int);
				//	jQuery('.loader  img').css('background', 'none');
			}
		jQuery('#Main img:hidden').eq(0).fadeIn(300)
			i++;
	 }

