
$(document).ready(function(){	
	$("#banner_image").easySlider({
		auto: true,
		continuous: true, 
		pause:3*1000,
		numeric: true
	});
});

function changeLocation(menuObj) //used to change language locations
{
   var i = menuObj.selectedIndex;

   if(i > 0)
   {
      window.location = menuObj.options[i].value;
   }
}

