$(document).ready(function() {

	/* ie6 dropdown hover **********/
		$('li.dd_parent').hover(
			function(){ $('.dd_child').css('visibility','visible'); },
			function(){ $('.dd_child').css('visibility','hidden'); }
		);


	/* clear form fields on click **********/

//		function inputClear(ic_id) {
//			var ic_cont = $(ic_id).val();
//			$(ic_id).click(function() {
//				var ic_check = $(ic_id).val();
//				if (ic_check==ic_cont) { $(ic_id).val(''); }
//			})
//			$(ic_id).blur(function() {
//				var ic_check = $(ic_id).val();
//				if (ic_check=='') { $(ic_id).val(ic_cont); }
//			})
//		}
//		
//		inputClear('.sidetextbox1')
//		inputClear('.sidetextbox2')
//		inputClear('.sidetextbox3')
//		inputClear('.sidetextbox4')
//		inputClear('.sidetextbox5')
//		inputClear('.sidetextarea')

});
