$(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");
		});
			
});

