
$( document ).ready( function(){
		
	$('.blink')
		.focus( function(){
			if ( $( this ).attr('value') == $( this ).attr('title') ) {
				 $( this ).attr({ 'value': '' });
				 $( this ).addClass('black');
			}
		})
		.blur( function(){
			if ( $( this ).attr('value') == '' ) {
				$( this ).attr({ 'value': $( this ).attr('title') });
				$( this ).removeClass('black');
			}
		});
		
		
		
	$('#support-menu a')
		.click( function(){
			var thisclass = $(this).attr("class");
			$('.support-option').hide();
			$('.support-option#'+thisclass).fadeIn();
		});
		
		

		
});

