$(function() {
	arr_images = [		  
		'images/b_dd_aw12_mns_02.jpg',
	]
	rand_image = arr_images[parseInt(Math.random()*arr_images.length)]
  
  $('#bg:empty').html('<img src="'+rand_image+'" />')
  // $('#bg:empty').html('<img src="'+rand_image+'" onload="fadeIn(this);" />')
	$('#bg img').load(function() {
	  if( !$.support.transition )
    {
   	  $(this).css({
        opacity: "0"
      })
   	  $(this).animate({
        opacity: "1"
      }, 1000)   
    } else {
      $(this).css('opacity', '1')
    }
  })
	

})
