jQuery(document).ready(function(){
	
	if(isIE()) {} else {
		// get image, move it to background of div
		jQuery('.rounded-corners').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);
}
