$(document).ready(function() {
    $("#content > div").hide();
    $("#content > div:eq(0)").show();
    $("#tabs > a:eq(0)").css("background", "url(images/r_menu.gif) top left repeat");
});

function opentab(num) {
    $("#content > div").hide();
    $("#content > div:eq(" + (num-1) + ")").fadeIn();
    $("#tabs > a").css("background", "url(images/main_bg.gif) top left repeat");
    $("#tabs > a:eq(" + (num-1) + ")").css("background", "url(images/r_menu.gif) top left repeat");
}
