// Global Inits
$(document).ready(function() {
	// Set up player pop-up window
	$("#header-boombox-link").popupWindow({
		width:350,
		height:140,
		top:50,
		left:50,
		windowName:'srplayer',
		createnew:0,
		location:0,
		menubar:0,
		status:0,
		resizable:0,
		toolbar:0,
		scrollbars:0
	});
});

// Clear field on focus, use default value if field is left blank by user
$.fn.focusVal = function() {
	return this.focus(function() {
		if( this.value == this.defaultValue ) {
			this.value = "";
		}
	}).blur(function() {
		if( !this.value.length ) {
			this.value = this.defaultValue;
		}
	});
};
