$(document).ready(function(){


		//rounded corner

        $("#cardroom")
        .livequery(function(){
            $(this).corner('6px');
        });
		
		//table stripe
//		$("table tr:nth-child(even)")
//			.livequery(function(){
//				$(this).addClass("hover");
//		});

		$("table tr.even")
			.mouseover(function(){
				$(this).addClass("hover");
		});

        $("table tr.even")
			.mouseout(function(){
				$(this).removeClass("hover");
		});
        
        $("table tr.gold")
			.mouseover(function(){
				$(this).addClass("goldhover");
		});

        $("table tr.gold")
			.mouseout(function(){
				$(this).removeClass("goldhover");
		});

        $("table tr.bronze")
			.mouseover(function(){
				$(this).addClass("bronzehover");
		});

        $("table tr.bronze")
			.mouseout(function(){
				$(this).removeClass("bronzehover");
		});

        $("table tr.silver")
			.mouseover(function(){
				$(this).addClass("silverhover");
		});

        $("table tr.silver")
			.mouseout(function(){
				$(this).removeClass("silverhover");
		});

		//table scrollable
//
//		$('table:eq(2)')
//			.livequery(function(){
//				$(this).Scrollable(130, 645);
//		});

});
