


window.addEvent('domready', function() {
	var nowbutton = $('moviestabs_now');
	var soonbutton = $('moviestabs_soon');
	var movtab1 = $("movietab_1");
	var movtab2 = $("movietab_2");
	
	
	if(nowbutton != null && soonbutton != null){
		nowbutton.addEvent("click",function(ele){
				nowbutton.setProperty("class","activetabby");
				soonbutton.setProperty("class","inactivetabby");
				movtab2.setStyle("z-index",0);
				movtab1.setStyle("z-index",99);
				return false;
		});
		soonbutton.addEvent("click",function(ele){
				soonbutton.setProperty("class","activetabby");
				nowbutton.setProperty("class","inactivetabby");
				movtab2.setStyle("z-index",99);
				movtab1.setStyle("z-index",0);
				return false;
				
		});
	}
	
});

