$(document).ready(function() {

			

	//curve the navbar - gives IE support instead of using CSS3		

	$('#navbar').corner({

	  tl: { radius: 6 },

	  tr: { radius: 6 },

	  bl: { radius: 6 },

	  br: { radius: 6 }});

	

	

	

	//autofill and refill search input default text on focus

	$('#edit-search-theme-form-l').autofill({

        value: 'search',

        defaultTextColor: '#999',

        activeTextColor: '#333'

      });

	// autofill email and zip fields with default text

/*	$('#cons_email').autofill({

        value: 'email address',

        defaultTextColor: '#999',

        activeTextColor: '#333'

      });

	$('#cons_zip_code').autofill({

        value: 'zip code',

        defaultTextColor: '#999',

        activeTextColor: '#333'

      });

	$('#USERNAME').autofill({

        value: 'username',

        defaultTextColor: '#999',

        activeTextColor: '#333'

      });
	$('#Password').autofill({

        value: 'password',

        defaultTextColor: '#999',

        activeTextColor: '#333'

      });
	*/

	//random background image in header

	var bgImageTotal=6;

	var randomNumber = Math.round(Math.random()*(bgImageTotal-1))+1;

	var imgPath=('http://www.nwlc.org/sites/default/files/images/headers/NWLC-headers-'+randomNumber+'.png');

	$('#header').css('background-image', ('url("'+imgPath+'")'));

});


