	<!-- 
	//Browser Support Code
	var current = 'videos'; //just so that way it's got something to clear.
	
	function getArticles(one,two){
		var ajaxRequest;  // The variable that makes Ajax possible!
		var catone = one;
		var cattwo = two;     
		try{
			// Opera 8.0+, Firefox, Safari
			ajaxRequest = new XMLHttpRequest();
		} catch (e){
			// Internet Explorer Browsers
			try{
				ajaxRequest = new ActiveXObject("Msxml2.XMLHTTP");
			} catch (e) {
				try{
					ajaxRequest = new ActiveXObject("Microsoft.XMLHTTP");
				} catch (e){
					// Something went wrong
					alert("Your browser broke!");
					return false;
				}
			}
		}
		// Create a function that will receive data sent from the server
		ajaxRequest.onreadystatechange = function(){
			if(ajaxRequest.readyState == 4){
				var ajaxDisplay = document.getElementById('ajaxDiv');
				ajaxDisplay.innerHTML = ajaxRequest.responseText;
			}
		}
		var queryString = "?cat1=" + catone + "&cat2=" + cattwo;
		ajaxRequest.open("GET", "../ajax.php" + queryString, true);
		ajaxRequest.send(null); 
	}
	
	function hoveron(it){
		document.getElementById(it).src='../images/main/off_'+it+'.png';
	}
	
	function hoveroff(it){
		document.getElementById(it).src='../images/main/off_'+it+'.png';
	}
	
	
	
	//-->
	function ajaxFunction(elmnt,one,two){
		document.getElementById(current).src='../images/main/off_'+current+'.png';
		document.getElementById(elmnt).src = '../images/main/r_'+elmnt+'.png';
		
		document.getElementById('ajaxDiv').innerHTML = '';
		document.getElementById('ajaxbg').style.backgroundImage = "url('../images/main/loading.gif')";
		setTimeout("getArticles("+one+","+two+");",300);
		setTimeout("document.getElementById('ajaxbg').style.backgroundImage = 'none';",500);
		current = elmnt;
	}
