/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

    * Filename: argandia.js
    * Website: http://www.argandia.fr
    * Author: Agence Moorea
    * Description: javascript 

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */

function css_emulateMaxWidthHeight() { 
$('.short_product .visuel-produit img').each(function() {       

if( $(this).css('max-width') != 'none' || $(this).css('max-height') != 'none' ) { 
max_width = $(this).css('max-width').replace(/[^0-9]/g, ''); 
max_height = $(this).css('max-height').replace(/[^0-9]/g, '');       
if( $(this).width() > max_width || $(this).height() > max_height ) { 
if( (max_width / $(this).width()) < (max_height / $(this).height()) ) { 
$(this).css('height', Math.round($(this).height() * (max_width / $(this).width()))); 
$(this).css('width', max_width); 
} else { 
$(this).css('width', Math.round($(this).width() * (max_height / $(this).height()))); 
$(this).css('height', max_height); 
} 
} 
} 
}); 
}
