$(document).ready(function(){
    $(document).pngFix(); 
   
	$('A[rel="external"]').click( function() {
	window.open( $(this).attr('href') );
	return false;
	});						   
						   

	$('#nav a').hover(function(){
    $(this).stop().animate({color: '#CD6820'});
}, function() {
    $(this).stop().animate({color: '#E2E3E3'});
});
	
	$('#footernav a, #copyright a').hover(function(){
    $(this).stop().animate({color: '#CD6820'});
}, function() {
    $(this).stop().animate({color: '#B58F68'});
});	
	
	$('#nav li.navsel a').hover(function(){
    $(this).stop().animate({color: '#E85A24'});
}, function() {
    $(this).stop().animate({color: '#E85A24'});
});
	
		$('#mainarea a').hover(function(){
    $(this).stop().animate({color: '#E85A24'});
}, function() {
    $(this).stop().animate({color: '#0071BB'});
});
	

	
		$('.homebox a').hover(function(){
    $(this).stop().animate({color: '#E85A24'});
}, function() {
    $(this).stop().animate({color: '#FFFFFF'});
});




  
  });
