if (document.images){
   img1 = new Image();

   img1.src = "http://www.idd.us.com/highplains/images/staff_bw.jpg";
}

$(document).ready(function(){	
	$('#button_one').hover(function(){
		$('#button_one span').css('color', '#000000');
		},function(){		
		$('#button_one span').css('color', '#902F1C');
	});
	
	$('#button_two').hover(function(){
		$('#button_two span').css('color', '#000000');
		},function(){		
		$('#button_two span').css('color', '#902F1C');
	});
	
	$('#button_three').hover(function(){
		$('#button_three span').css('color', '#000000');
		},function(){		
		$('#button_three span').css('color', '#902F1C');
	});
	
	$("a[rel='example1']").colorbox();
	$('#test').click(function(){
		if($(this).attr('rel') != 'example1'){
			$(this).attr('rel', 'example1');
		}
		
		$('#test2').attr('rel', 'poop');
	});
	$('#test2').click(function(){
		if($(this).attr('rel') != 'example1'){
			$(this).attr('rel', 'example1');
		}
		
		$('#test').attr('rel', 'poop');
	});
});