$(document).ready(function() {
    $("#activeFooter").empty();
    $("#activeFooter").hide();
    $("#activeFooterHeader a").click(function(){
        window.location = $(this).attr("href");
        return false;
    })
    $("#activeFooterHeader").click(function(){

            $("#activeFooter").empty();
            $("#activeFooter").html('<iframe src="http://www.3it.cz/activefooter/index.php?style=faraon" style="width: 980px; height: 300px; overflow: hidden; border: 1px solid silver;" id="myIFRAME"></iframe>');
            $("#activeFooter").show();
        var pos = $("#activeFooter").position();
        window.scrollTo(0,parseInt(pos.top+300));
    });
});
