
// Image preloading
if (document.images)
{
    resumepic = new Image();
    resumepic.src = "http://www.mycarmeets.com/RJD/ART/chess.jpg";
    personalpic = new Image();
    personalpic.src = "http://www.mycarmeets.com/RJD/ART/abacus2.jpg";    
    carpic = new Image();
    carpic.src = "http://www.mycarmeets.com/RJD/ART/carcorner.jpg";
    designpic = new Image();
    designpic.src = "http://www.mycarmeets.com/RJD/ART/colors.gif";
    musicpic = new Image(); 
    musicpic.src = "http://www.mycarmeets.com/RJD/ART/redguitar2.jpg";
    techpic = new Image();
    techpic.src = "http://www.mycarmeets.com/RJD/ART/ajax.jpg";
    techlogos = new Image();
    techlogos.src = "http://www.mycarmeets.com/RJD/ART/techlogos.jpg";
    photopic = new Image();
    photopic.src = "http://www.mycarmeets.com/RJD/ART/sky.jpg";
   
}

function launchContent(content_name) {
    fade('content');    
    
	var url = 'index.php?function='+encodeURIComponent(content_name);
	
	rayjaxCustomReturn(url, function(req) {
		window.setTimeout(function() {
			document.getElementById('content').innerHTML = req.responseText;             
			fade('content');
		}, 600);    
	});

}

function launchWindow(url, width, height) {

}

function hover(element) {
    element.style.backgroundColor = '#99F';    
    element.style.cursor = 'pointer';
}

function unHover(element) {
    element.style.backgroundColor = '';
    element.style.cursor = '';
}
