$(document).ready(function(){
	
	$('#leftcol a').hover(function(){

			$(this).addClass('hover');

	}, function () {
			$(this).removeClass('hover');
    })	
	
	$("#showFullText1").click( function(){
		$("p.hidden").toggle();
		$(this).hide();
	})
	
    /*$.ajax({
		type: "POST",
        contentType: "application/json; charset=utf-8",
        url: "/webservices/WebService.asmx/GetTicker",
        data: "{symbol:'UVFT'}",
        dataType: "json",
        success: function(msg) {
			//alert("test");
            // Hide the fake progress indicator graphic.

            var change = msg.d.Change;

            if (change >= 0) {
                $('#tickerQuote').html(msg.d.Quote);
                $('#tickerQuote').addClass('quoteUp');
            }
            else {
                $('#tickerQuote').html(msg.d.Quote);
                $('#tickerQuote').addClass('quoteDown');
            }
        }
    });	*/
    
});	