//detect
<!--
var browser		= navigator.appName
var ver			= navigator.appVersion
var thestart	= parseFloat(ver.indexOf("MSIE"))+1 //This finds the start of the MS version string.
var brow_ver	= parseFloat(ver.substring(thestart+4,thestart+7)) //This cuts out the bit of string we need.

if ((browser=="Microsoft Internet Explorer") && (brow_ver <= 6)) //By default the min. IE ver is set to 6. Change as desired.
	{
	window.location="http://www.coloradoprorodeo.com/oldie.html"; //URL to redirect to.
	}
//-->
// Rollover
$(document).ready(function() {
 
$("img.rollover").hover(
function()
{
this.src = this.src.replace("_off","_on");
},
function()
{
this.src = this.src.replace("_on","_off");
}
);

});

//Bottom Roll Over
$(function() {
   $('div.misc').hover( function(){
	  $(this).css('background-color','#F0E8D0');
	  $(this).find('a').css('color','#900');
	  $(this).css('cursor','pointer');
  },
   function(){
	  $(this).css('background-color','');
	  $(this).find('a').css('color','#000');
	  $(this).css('cursor','auto');
   });
});
$(function() {
   $('#pmess1').hover( function(){
	  $(this).css('background-color','#FFFFFD');
	  $(this).css('border-color','#CCC');
	  $(this).css('cursor','default');
  },
   function(){
	  $(this).css('background-color','');
	  $(this).css('border-color','');
	  $(this).css('cursor','auto');
   });
});
$(function() {
   $('div.fcolp').hover( function(){
	  $(this).css('background-color','#F1A0A3');
	  $(this).css('cursor','pointer');
  },
   function(){
	  $(this).css('background-color','');
	  $(this).css('cursor','auto');
   });
});
$(function(){
$("div.fcolp").click(function(){
     window.location=$(this).children("a").attr("href");
     return false;
});
});
$(function() {
   $('div.fcold').hover( function(){
	  $(this).css('background-color','#B4E3FA');
	  $(this).css('cursor','pointer');
  },
   function(){
	  $(this).css('background-color','');
	  $(this).css('cursor','auto');
   });
});
$(function(){
$("div.fcold").click(function(){
     window.location=$(this).children("a").attr("href");
     return false;
});
});
$(function() {
   $('div.spdf').hover( function(){
	  $(this).css('background-color','#F1A0A3');
	  $(this).css('cursor','pointer');
  },
   function(){
	  $(this).css('background-color','');
	  $(this).css('cursor','auto');
   });
});
$(function(){
$("div.spdf").click(function(){
     window.location=$(this).children("a").attr("href");
     return false;
});
});
$(function() {
   $('div.sdoc').hover( function(){
	  $(this).css('background-color','#B4E3FA');
	  $(this).css('cursor','pointer');
  },
   function(){
	  $(this).css('background-color','');
	  $(this).css('cursor','auto');
   });
});
$(function(){
$("div.sdoc").click(function(){
     window.location=$(this).children("a").attr("href");
     return false;
});
});
$(function(){
$('div.misc').click(function(){
     window.location=$(this).find("a").attr("href");
     return false;
});
});
