$(document).ready(function(){
/* rows color interchange */						   
  $(".table tr").filter(":odd").addClass(" odd");
  $(".table tr").filter(":even").addClass(" even");
/* /rows color interchange */

/* hover emulation for IE6 */  
  if($.browser.msie && jQuery.browser.version < "7.0"){
    $(".for-hover").hover(
      function () {
        $(this).addClass(" hover");
      }, 
      function () {
        $(this).removeClass(" hover");
      }
    );
  }
/* /hover emulation for IE6 */
});