// JavaScript Document
	jQuery(document).ready(function() {
		jQuery('.slideshowbg').cycle({
				    fx:     'fade', 
					speed:   1500, 
					timeout: 3500, 
					next:   '.slideshowbg', 
					pause:   1 // choose your transition type, ex: fade, scrollUp, shuffle, etc...

		});
		
		
	});
/*----------------------- Start Over ----------------------*/
function imgSwap(oImg)
{
   var strOver  = "_on"    // image to be used with mouse over
   var strOff = "_off"     // normal image
   var strImg = oImg.src
   if (strImg.indexOf(strOver) != -1) 
      oImg.src = strImg.replace(strOver,strOff)
   else
      oImg.src = strImg.replace(strOff,strOver)
}
/*----------------------- End Over ----------------------*/


function loadGetNews() {
			
		jQuery("#all_contantactivity").hide();
		jQuery("#loder_ajax").show();
		jQuery('#tab_1').attr('src','images/boxhome/main_29_off.gif');
		jQuery('#tab_2').attr('src','images/boxhome/main_30_off.gif');
		jQuery('#tab_3').attr('src','images/boxhome/main_31_off.gif');
		
	var TYPE="POST";
		var URL="load_news.php";
		var dataSet={ };
		jQuery.ajax({type:TYPE,url:URL,data:dataSet,
			success:function(html){
				jQuery("#loder_ajax").hide();
				jQuery("#load_contanthome").show();
				jQuery("#load_contanthome").html(html)
			}
		}); 
		}	
		
		function loadGetActivity() {

			
		jQuery("#all_contantactivity").hide();
		jQuery("#loder_ajax").show();
		jQuery('#tab_1').attr('src','images/boxhome/main_29_off.gif');
		jQuery('#tab_2').attr('src','images/boxhome/main_30_off.gif');
		jQuery('#tab_3').attr('src','images/boxhome/main_31_off.gif');
		
	var TYPE="POST";
		var URL="load_activity.php";
		var dataSet={ };
		jQuery.ajax({type:TYPE,url:URL,data:dataSet,
			success:function(html){
				jQuery("#load_contanthome").show();
				jQuery("#load_contanthome").html(html)
				jQuery("#loder_ajax").hide();
			}
		}); 
		}
		
		function loadGetProcure() {

			
		jQuery("#all_contantactivity").hide();
		jQuery("#loder_ajax").show();
		jQuery('#tab_1').attr('src','images/boxhome/main_29_off.gif');
		jQuery('#tab_2').attr('src','images/boxhome/main_30_off.gif');
		jQuery('#tab_3').attr('src','images/boxhome/main_31_off.gif');
		
	var TYPE="POST";
		var URL="load_procure.php";
		var dataSet={ };
		jQuery.ajax({type:TYPE,url:URL,data:dataSet,
			success:function(html){
				jQuery("#load_contanthome").show();
				jQuery("#load_contanthome").html(html)
				jQuery("#loder_ajax").hide();
			}
		}); 
		}
		
		

