<script type="text/javascript">
jQuery(document).ready(function () {
if(jQuery.browser.msie){
if(parseFloat(jQuery.browser.version) < 9){
//Versions of IE less than 8
window.location = "http://google.com";
}
}
});
</script>