/*
jQuery global bits
*/
$(document).ready(function() {

	// QUIKSEARCH TOGGLE DEFAULT VAL
 	$("INPUT#quiksearch").focus(function() {
		if ($(this).val() == $(this)[0].defaultValue) {
			$(this).val("");
		}
	}).blur(function() {
		if ($(this).val() == "") {
			$(this).val($(this)[0].defaultValue);
		}
	});

});
