jQuery(function() {
	jQuery('#qt').focus(function() { if(this.value == 'Search Website') {this.value = '';} });
	jQuery('#qt').blur(function() { if(this.value == '') {this.value = 'Search Website';} });
	
	jQuery('#qctdrop1').mouseover(function() {
		jQuery('#qctdropdown2,#qctdropdown3').hide();
		jQuery('#qctdropdown1').show();
		//jQuery('#qctdropdown').slideToggle('medium');
		jQuery('#hider').show();
		jQuery(this).addClass('on');
		jQuery('#qctdrop1').addClass('on');
		jQuery('#qctdrop2, #qctdrop3').removeClass('on');
});
	jQuery('#qctdrop2').mouseover(function() {
		jQuery('#qctdropdown1,#qctdropdown3').hide();
		jQuery('#qctdropdown2').show();
		//jQuery('#qctdropdown').slideToggle('medium');
		jQuery('#hider').show();
		jQuery(this).addClass('on');
		jQuery('#qctdrop2').addClass('on');
		jQuery('#qctdrop1, #qctdrop3').removeClass('on');
});

	jQuery('#qctdrop3').mouseover(function() {
		jQuery('#qctdropdown1,#qctdropdown2').hide();
		jQuery('#qctdropdown3').show();
		//jQuery('#qctdropdown').slideToggle('medium');
		jQuery('#hider').show();
		jQuery(this).addClass('on');
		jQuery('#qctdrop3').addClass('on');
		jQuery('#qctdrop1, #qctdrop2').removeClass('on');
});

	jQuery('#topforms').append('<a href="" id="hider"></a>');
	jQuery('#hider').mouseover(function() {
		jQuery('#qctdropdown1,#qctdropdown2,#qctdropdown3,#hider').hide();
		//jQuery('#qctdropdown,#hider').slideToggle('medium');
		jQuery('#qctdrop1,#qctdrop2,#qctdrop3').removeClass('on');
	}).click(function() { return false; });
});
