$(document).ready(function(){





$('input[type=text]').each(function() {

			var default_value = this.value;

			$(this).focus(function() {

				if(this.value == default_value) {

					this.value = '';

				}

			});

			$(this).blur(function() {

				if(this.value == '') {

					this.value = default_value;

				}

			});

		});



$('input[type=password]').each(function() {

			var default_value = this.value;

			$(this).focus(function() {

				if(this.value == default_value) {

					this.value = '';

				}

			});

			$(this).blur(function() {

				if(this.value == '') {

					this.value = default_value;

				}

			});

		});



$('textarea').each(function() {

			var default_value = this.value;

			$(this).focus(function() {

				if(this.value == default_value) {

					this.value = '';

				}

			});

			$(this).blur(function() {

				if(this.value == '') {

					this.value = default_value;

				}

			});

		});









$('#TopMenu ul li').last().addClass('last');

//grab carttotal, and display it.

if ($('#subtotal strong').length) {



   $('#cartTotalCost').html($('#subtotal strong.total strong').html());

    $('#cartItemCount').html($('#subtotal strong').html());

   

} else {

     $('#cartTotalCost').html("$0.00");

	 $('#cartItemCount').html('0');

}



		$('.landingBlock .item').each(function() {
			var iSrc = $(this).find('img').attr('src');
			$(this).css({
				"background-image":"url( " + iSrc + ")",
				"background-repeat": "no-repeat",
				"background-position": "50% 0"
			});

		});




});






