var myPage = {
	init : function(){
		 myPage.doVerticalTicker();
	},
	execPage : function (frmname,actionvar,itemidvar,ispecial){
		frm = document.getElementById(frmname);
		frm.action_f.value= actionvar;
		frm.itemid.value= itemidvar;
		var dosubmit=false;
		if(document.getElementById("countShow")){ document.getElementById("countShow").value="";}

		if(ispecial){
			frm.action= ispecial+".php";	

		}	
			switch (actionvar){
				case "getAdInfo":					
					dosubmit=true;
				break;	
				default:
					alert("No actions defined for:"+actionvar+" !!");

			}

		
		if(dosubmit){
			frm.submit();
		}
	},
	doVerticalTicker: function(){
		$('#vscroll').vTicker({
			speed: 500,
		   pause: 3000,
		   showItems: 7,
		   animation: 'fade',
		   mousePause: true
		});
	}
/////
}//myPage
$(document).ready(function () {
	myPage.init();
});//document ready




