/***/
var $jq = jQuery.noConflict();
/***/

function incText() {
    wrapper = document.body;
    wrapper.style.fontSize = '1em';
} //end function incText()


/*custom selectbox mouseover*/
function customSelectIE6Fix() {

    var IE6 = false/*@cc_on || @_jscript_version < 5.7@*/;

    // get/set search button header
    $jq("#test-Text").hover(function() {
        if (IE6) {
            $jq("#test-Text").css({
                "background-position": "0px -21px"
            });
        }
    },
	function() {
	    if (IE6) {
	        $jq("#test-Text").css({
	            "background-position": "0px 0px"
	        });
	    }
	});

    // get/set portal button footer
    $jq("#test2-Text").hover(function() {
        if (IE6) {
            $jq("#test2-Text").css({
                "background-position": "0px -21px"
            });
        }
    },
	function() {
	    if (IE6) {
	        $jq("#test2-Text").css({
	            "background-position": "0px 0px"
	        });
	    }
	});
}

function ie8NaviColor() {
    $jq("#tabsF span").hover(function() {
        $jq(this).css({
            "color": "#d81e05"
        });
    },
	function() {
	    $jq(this).css({
	        "color": "#464f54"
	    });
	});

    $jq("#tabsF span.on").hover(function() {
        $jq("#tabsF span.on").css({
            "color": "#d81e05"
        });
    },
	function() {
	    $jq("#tabsF span.on").css({
	        "color": "#d81e05"
	    });
	});
}

$jq(document).ready(function() {
    customSelectIE6Fix();
    ie8NaviColor();
});

function printPopup() {
    window.open("Standard_Image_Text_Print.html", "print", "width=626, menubar=0, height=610, scrollbars=1, resizable=0");
}
function closeVorschlaege() {
    if (document.getElementById("vorschlaege_1")) {
        document.getElementById("vorschlaege_1").style.display = "none";
    }
}

function showVorschlaege() {
    if (document.getElementById("vorschlaege_1")) {
        document.getElementById("vorschlaege_1").style.display = "block";
    }
}

function closeVorschlaege2() {
    if (document.getElementById("vorschlaege_2")) {
        document.getElementById("vorschlaege_2").style.display = "none";
    }
}

function showVorschlaege2() {
    if (document.getElementById("vorschlaege_2")) {
        document.getElementById("vorschlaege_2").style.display = "block";
    }
}


