
jQuery(function(){ 
	
	
	
	
	/* Product Details Box */
	jQuery('.view-feature-table .absoluteElement').mouseenter(function(){
		var height = jQuery(this).find('.views-field-body').height() + 62;
		height += "px";
		jQuery(this).find('.views-field-field-product-family-detail-head-value').css({'cursor' : 'default', 'height' : height, 'position' : 'absolute', 'background-position' : '0px 0px'});
		jQuery(this).find('.views-field-body').css({'display' : 'block', 'z-index' : '99', 'position' : 'absolute'});	
		jQuery(this).find('.views-field-field-product-family-detail-head-value').addClass('detailhover');

	});
	jQuery('.view-feature-table .absoluteElement').mouseleave(function(){
		jQuery(this).find('.views-field-field-product-family-detail-head-value').css({'height' : '50px', 'position' : '', 'background-position' : '0px -150px'});
		jQuery(this).find('.views-field-body').css({'display' : 'none', 'z-index' : '1', 'position' : ''});		
		jQuery(this).find('.views-field-field-product-family-detail-head-value').removeClass('detailhover');
	});











});


