$(document).ready(function(){ 
  $('input.with_defaults').focus(function(){ 
    if($(this).val() == $(this).attr('defaultValue'))
    {
      $(this).val('');
      $(this).css('color','#333333');
    }
  });
  
  $('input.with_defaults').blur(function(){
    if($(this).val() == '')
    {
      $(this).val($(this).attr('defaultValue'));
      $(this).css('color','#999999');
    } 
  });
}); 

/**
 * Development
 */

$(function() {
	var hostname = location.hostname;

	if(hostname.search('.dev') != -1) {
		var options = {
			name: 'In Development',
			message: 'You are viewing the development version of the site. The production version can be found at <a href="http://www.metroretromusic.com" target="_blank">metroretromusic.com</a>.',
		};
		
		$.getScript('https://getfirebug.com/firebug-lite.js');
	}

	if(options)
		$.environmentBadge(options);
});
