jQuery(document).ready(function() {
	// min-height for RM - yields cross-browser support
	ht_rm = jQuery("#rm").height();
	if (ht_rm < 650) { 
		jQuery("#rm").height(650)
	};
	// IE lte 6-specific
	if(jQuery.browser.msie && jQuery.browser.version<7) {
		jQuery(".subnav.subnav_m02").append('<div class="clearfix"></div>');
	};
});

/* Ratings Bar IE6 Solution */
jQuery(function(){	
	for (i=1;i<=10;i++) {
		jQuery('img[name="T'+i+'"]').css("position","relative");
	}
});
