$(document).ready(function(){

	// show we have javascript
	$('body').addClass('js');

	// add class to last items
	$('#ftr .col2 ul li:last-child, #hdr .menu li:last-child').addClass('last');

		
	$('#hdr .right input[type="text"]').focus(function() {
	   	if (this.value == this.defaultValue) this.value = '';
	});
	    	
	$('#hdr .right input[type="text"]').blur(function() {
	  	if (this.value == '') this.value = (this.defaultValue ? this.defaultValue : '');
	});


	/* hide/show labels */
	/*
	$('#hdr .right input:not(:submit)').each(function() {
		if($(this).attr('value') != '') {
			$(this).parent().addClass('on');
		}
	}).focus(function() {
		$(this).parent().addClass('on');
	}).blur(function() {
		if($(this).attr('value') == '') {
			$(this).parent().removeClass('on');
		}
	});
	*/

});
