$(function() {
// Login 
	$("#Smartmail").overlay({
		onBeforeLoad: function() { this.expose({color: '#000', zIndex:9999}); },
		onClose: function() { $.expose.close(); }
	});
	$("#Bitbucket").overlay({
		onBeforeLoad: function() { this.expose({color: '#000', zIndex:9999}); },
		onClose: function() { $.expose.close(); }
	});	
});	


$(document).ready(function(){ 
  $('input[type=text]').focus(function(){ 
    if($(this).val() == $(this).attr('defaultValue'))
    {
      $(this).val('');
    }
  });
  
  $('input[type=text]').blur(function(){
    if($(this).val() == '')
    {
      $(this).val($(this).attr('defaultValue'));
    } 
  });
}); 
