jQuery(document).ready(function(){
	
	if(isIE()) {} else {
	// get image, move it to background of div
	jQuery('.image-wrapper-div').each(function(){
		jQuery(this).css('background-image', 'url('+$(this).find('img').attr('src')+')');
		jQuery(this).find('img').hide();
	});
	jQuery('.img-wrapper-div').each(function(){
		jQuery(this).css('background-image', 'url('+$(this).find('img').attr('src')+')');
		jQuery(this).find('img').hide();
	});
	}
	
});


function isIE()
{
  return /msie/i.test(navigator.userAgent) && !/opera/i.test(navigator.userAgent);
}
