jQuery(function( $ ){
	
	 $(function () {
	        var img = new Image();
	        $(img).load(function () {
	            //$(this).css('display', 'none'); // .hide() doesn't work in Safari when the element isn't on the DOM already
	            $(this).hide();
	            $('#FullCol').removeClass('loading').append(this);
	            $(this).fadeIn(300);
	        }).error(function () {
	            // notify the user that the image could not be loaded
	        }).attr('src', 'img/home_banner.jpg');
	
			var img2 = new Image();
	        $(img2).load(function () {
	            //$(this).css('display', 'none'); // .hide() doesn't work in Safari when the element isn't on the DOM already
	            $(this).hide();
	            $('#FullColSecondary').removeClass('loading').append(this);
	            $(this).fadeIn(300);
	        }).error(function () {
	            // notify the user that the image could not be loaded
	        }).attr('src', 'img/bali_banner.jpg');
	
			var img3 = new Image();
	        $(img3).load(function () {
	            //$(this).css('display', 'none'); // .hide() doesn't work in Safari when the element isn't on the DOM already
	            $(this).hide();
	            $('#FullColSecondary2').removeClass('loading').append(this);
	            $(this).fadeIn(300);
	        }).error(function () {
	            // notify the user that the image could not be loaded
	        }).attr('src', 'img/balimedia_banner.jpg');
	
	    });


});


counter1="0";

function clearonce1() {
							if (counter1==0){
							document.getElementById('q8').style.background ='none';
							counter1 ++;
							}
						}
