$(document).ready(function()
{

    $(".td tr:not(.round)").hover(function(){
        $(this).css({ "background-color":"#F5F5F5" });
    },function(){
        $(this).css({ "background-color":"#ffffff" });
    });




    $(".del_comment").live("click", function(event){


        var id = $(this).attr("id");
        var p = $(this);
        var position = p.position();
        $("#container").append('<div class="dialog" style="top: '+(position.top-70)+'px;left: '+(position.left-20)+'px;"><h1>Kommentar löschen</h1><p>Bist du sicher, dass du diesen Kommentar löschen möchtest?</p><div><input type="submit" class="submit" value="Löschen" onclick="del_comment('+id+')"  /><input type="submit" class="cancel" onclick="$(this).parent().parent().remove();" value="Abbrechen"  /></div></div>');

        return false;

    });

    $('#competition').bind('change', function() {
        $('.cteams').css({ "display":"none" });
        $('.cteam'+$('#competition option:selected').val()).css({ "display":"block" });
    });


});

function del_comment(id) {
    alert(id);
}
function open_iframe(url,width,height) {

    $("body").append('<div id="ifBackground" onclick="$(this).remove();" title="Schließen">&nbsp;</div>');

    var p = $("#ifBackground");

    $("#ifBackground").append('<iframe height="'+height+'" width="'+width+'" src="'+url+'" id="if_frame" style="left:'+Math.round(((p.outerWidth()-width)/2))+'px;width:'+width+'px;top:'+(Math.round(((p.outerHeight()-height)/2))-1)+'px;height:'+height+'px"></iframe>');

}


