// JavaScript Document
/*$(document).ready(function(){
	$.colorbox({overlayClose:false,scrolling:false, html:"<a href='#'><img src='img/popup.png'></a>"});
	//setTimeout($.colorbox({href:"img/img2.jpg"}), 1500);
	
});*/

$(document).ready(function(){
  $('#idDOBanner').show().width($('#imgBanner').width());
  $('#close').click(function(){
    //alert($('#imgBanner').width());
	$('#idDOBanner').fadeOut();
  });
  setTimeout(function(){
    $('#idDOBanner').fadeOut() ;   
  }, 15000);
  
  
});


