/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

$(function() {

	// added trading name info to footer
	$('#footer').append('<div class="center">Uptimes.com is a trading name of Virvo Ltd.</div>');

/*    var nav_symbol_entity = '';

    $('#navi2 li a').each(function() {

        if($(this).parent().hasClass('act')) {
            nav_symbol_entity = '&#9660;';
        } else {
            nav_symbol_entity = '&#9658;';
        }

        $(this).html( $(this).html() + '<span class="nav_arrow" >' + nav_symbol_entity + '</span>' );

        $(this).hover( $(this).parent().addClass('act'), $(this).parent().removeClass('act') );

    });


*/

    var context = $("#beta_banner")[0].getContext('2d');

    if(context) {

    	// show beta tag
    	context.save();
		context.translate(120, 73);
	    context.font = "bold 13px sans-serif";
	    context.shadowColor = "#333333";
		context.shadowOffsetX = 2;
		context.shadowOffsetY = 2;
		context.shadowBlur = 2;
		context.fillStyle = "#F2FF00";
        context.fillText("BETA", 15, 15);
        context.restore();

    	// show .com
    	context.save();
		context.translate(290, 90);
    	context.rotate(-1.55);
	    context.font = "14px sans-serif";
		context.fillStyle = "#ffffff";
        context.fillText(".com", 15, 15);
        context.restore();


    }

});



