// jQuery(function() {
// 	jQuery('#index_topbox2').bgSwitcher({
// 		images: ['images/img_contbg2.jpg', 'images/img_contbg3.jpg', 'images/img_contbg4.jpg', 'images/img_contbg1.jpg'],
// 		interval: 5000
// 	});
// });
jQuery.noConflict()(function() {
    var count = 1;

		setInterval(function(){
			count++;
			if(count > 4){
				count = 1;
			}
			
		var img2 = jQuery("#index_topbox2");
		var img = jQuery("#index_topbox");
		img.css("background-image","url(images/img_contbg"+count+".jpg)");
			img2.fadeOut(1200, function(){
				if (this.complete){
					
					img2.attr("src","images/img_contbg"+count+".jpg");
					img2.fadeIn("slow");
          	   };
			});
		}, 5000);
	});
