/**
 * corrections for ie6
 */

$(document).ready(function(jQuery) {

	if ($.browser.msie && +$.browser.version < 7) {
	
		// if ie6 add hover support to elements
		$('.iehover').live('mouseover', function(e){
			if ($(this).hasClass('iehover')) {
				$(this).addClass('hover');
			}
		}).live('mouseout', function(e){
			if ($(this).hasClass('iehover')) {
				$(this).removeClass('hover');
			}
		});
	
	}

 });
