/**
* Jquery-based Javascsript
*/
function initGSMG() {

	// Put the Label Content to the input field (connected via id)
	var lgEmail = $('#lgEmail').val();
	var lgPassword = $('#lgPassword').val();
	var em = 'false';
	var ps = 'false';

	if (lgEmail == 'Username')    { em = 'true'; }
	if (lgPassword == 'password') { ps = 'true'; }

	// Toggle Select Field
	$('#lgEmail').click( function(){
		if (em == 'true') {
			$(this).val("");
			em = 'false';
		}
		if (ps == 'true') {
			$('#lgPassword').val("");
			ps = 'false';
		}
	});
	$('#lgEmail').blur( function(){
		if ($(this).val() == "") {
			$(this).val(lgEmail);
			em = 'true';

			if ($('#lgPassword').val() == "") {
				$('#lgPassword').val(lgPassword);
				ps = 'true';
			}
		}
	});

}

$(document).ready(function() {
	/**
	 * Rounded corners for content wrapper
	 */
	$('.content').wrapInner('<div class="content-inner"></div>');
	$('.content, .content-inner').corner({
	  tl: { radius: 3 },
	  tr: { radius: 3 },
	  bl: { radius: 3 },
	  br: { radius: 3 },
      antiAlias: true
	  });
	$('.content').css("width", "543px");
});
