// JavaScript Document
var images = new Array('zumar_BW.jpg','arch_link_r.gif','traffic_link_r.gif','portfolio_r.gif','capabilities_services_r.gif','images/news_r.gif','zumar_nav_r.gif','contact_r.gif','shop_drawings_r.gif','projects_r.gif','philosophy_r.gif','people_r.gif');
	
$(document).ready(function(){
			   
	load_images();
	
	$('.swap').mouseover(function(){
		this.src = this.src.replace("_b.gif","_r.gif");
		this.src = this.src.replace("Zumar_logo.gif","zumar_BW.jpg");
	});
	
	$('.swap').mouseout(function(){
		this.src = this.src.replace("_r.gif","_b.gif");
		this.src = this.src.replace("zumar_BW.jpg","Zumar_logo.gif");
	});
	
	$('#pages ol li').click(function(){
		var ahref = this.getElementsByTagName('a')[0].href;
		window.location = ahref;
	});
	/*
	$('a').click(function(event){
		if(this.href.indexOf('.html') == -1){
			event.preventDefault();
		}
	});
	*/
	
});

function load_images(){

	for(var i=0;i<images.length;i++){
	
	   if(document.images){
	      var image = new Image();
	      image.src = 'images/' + images[i];
	   }
	}
}
