$(document).ready(function(){

        //cycle images in basic of poker page
        $('#banner-page')
        .livequery(function(){
            $(this).cycle('fade');
        });

		//rounded corner

        $("#cardroom")
        .livequery(function(){
            $(this).corner('6px');
        });
		
		//table stripe
		$("table tr:nth-child(even)")
			.livequery(function(){
				$(this).addClass("even");
		});

        $('#sngtoc').click(function(){
            $('#termcon').show();
            return false;
        });


        $('#termcon a.close').livequery('click', function(){
           $(this).parent('#termcon').hide();
           return false;
        });
			
});
