/**
 *
 * Developed by Lithyem Industries, inc.
 * an Interactive Design, Development and Strategy Agency
 * found at www.lithyem.net
 *
 **/

$(document).ready(function(){
	ieHover(".ul-class li, div.div-class, span , #box, ul#nav li", "hover");
});
function ieHover(h_list, h_class){
    if($.browser.msie && $.browser.version < 7){
        if(!h_class) var h_class = 'hover';
        $(h_list).hover(function(){
            $(this).addClass(h_class);
        }, function(){
            $(this).removeClass(h_class);
        });
    }
}
