// JavaScript Document
	$(document).ready(function(){
		var images = new Array("banner_infoboard.jpg","banner_award.jpg","banner_smart_sweep.jpg", "banner_activities_&_events.jpg");
		var caption = new Array("","","Smart and Colegio de Dagupan", "");
		var index = Math.floor(Math.random()*images.length);
		$('#headlines').load('getnews_sub.php');
		$('#events').load('getcalendar_sub.php');
		$('#banner_pic').html('<a href=\"#\"><img src=\"images/'+images[index]+'\"></a> &nbsp;'+ caption[index]).fadeIn('slow');
	});

	function updButton(obj)	{
		var cls = obj.className;		
		if(cls!='updBtn_Selected'){
			if(cls=='updBtn'){
				cls = 'updBtn_Highlight';
			}
			else{
				cls = 'updBtn';
			}
		}		
		obj.className = cls;	
	}
	
	function selectUpd(obj)	{
		for (var x = 1; x <= 2; x++){
			document.getElementById("updButton"+x).className = 'updBtn';
			document.getElementById("updContent"+x).style.display = 'none';
		}		
		obj.className='updBtn_Selected';
		var tmp = obj.id;
		var num = tmp.substr(tmp.length-1);
		document.getElementById("updContent"+num).style.display = 'block';
	}
	
	function newWindow(site, wx, yx) {                                             //new window
       var url = site;
       msgWindow = window.open(url, 'popup', 'resizable=no,width='+wx+',height='+yx+',scrollbars=no');
       if (msgWindow.opener == null) msgWindow.opener = self;
               msgWindow.focus();
       }