jQuery(document).ready(function(){
	
	jQuery(".table-wrapper").mouseover(function(){
		if(! (jQuery(this).closest('tr').hasClass('details') || jQuery(this).closest('tr').hasClass('open'))){
			jQuery(this).closest('tr').addClass('hover');
		}
	}).mouseout(function(){
		jQuery(this).closest('tr').removeClass('hover');
    });	
	
	
	/*
	jQuery(".table-style-A tr td").bind("click", function(){
		if(urlObj = jQuery(this).find('.jsHref')){
			window.location.href = jQuery(urlObj).attr('href');
		}
	});
	
	jQuery(".table-style-A tr td.options").unbind('click');
	*/
	
});
