/* Declare a namespace for the site */
var $gk = window.$gk || {};


/* Create a closure to maintain scope of the '$'
   and remain compatible with other frameworks.  */
(function($) {
	
	//same as $(document).ready();
	$(function() {
		
		

	});


	$(window).bind("load", function() {
		if ($("#url").val() == '') {
			$("#url").val('http://');
		}
		
		$("#url").focusin(function() {
			 $(this).css('color', '#16385A').val('');
		});

	});
	
})(jQuery);
