// JavaScript Document

function fix_bg() {
    var Gradient = document.getElementById("bg");
    switch (navigator.appName) {
        case 'Microsoft Internet Explorer':
            Gradient.style.backgroundImage = "url(/var/themes/thebescasino/images/bg/body-grad/ie6.png)";
            break;
        case 'Netscape':
            //Gradient.style.backgroundImage = "url(/var/themes/thebescasino/images/bg/body-grad/netscape.png)";
            break;
        case 'Opera':
            //Gradient.style.backgroundImage = "url(/var/themes/thebescasino/images/bg/body-grad/opera.png)";
            break;
    }
}

function fix_shadows() {
	if (screen.height < 548) {
		document.getElementById("shadow_left").style.height = screen.height;
		document.getElementById("shadow_right").style.height = screen.height;
	}
}


function fix_horizontals() {
	if ($(".Content").html() != null) {
		$(".Content").html($(".Content").html().replace(/<hr(.)*>/gi, '<div class="Horizontal"></div>'));
	}
}

function fix_bugs() {
	//fix_bg();
	//fix_shadows();
	//fix_horizontals();
}