var j = jQuery.noConflict();
			
			j(document).ready(function() {	

				j('div#productnav > ul > li > a').click(function() {
					j(this).parent().toggleClass('selected');
					return false;
				});

			
				//search box
				j(".ContactForm").focus(function() {
					 // only select if the text has not changed
					 if (this.value == this.defaultValue) {
						 this.select();
					 }
				 });
			
				 j(".ContactForm").blur(function() {
					 // only select if the text has not changed
					 if (this.value == "") {
						 this.value = this.defaultValue
					 }
				 }); 
			});
