

var tm;

$(document).ready(function() {


	//alert("asd");
	//alert($('#top_link').html());

    //$('#top_link').find('img').load(function() {
        put_topimage();
        tm = setInterval("put_topimage()", 500); 
    //});

    $(window).resize(function() {

        put_topimage();
		//alert("resize");

    });

    $(window).trigger("resize");
	 put_topimage();

});

function put_topimage() {
	
	
	var o = $(".bigContainer").offset();
	
    var l = ($(".bigContainer").width() - $('#top_link').width());
	
	var t = $(".bigContainer").css("margin-top");
	
	if(t=='auto') t =0;
	
	
    $('#top_link').css({
        position: "absolute",
        top: t,
        left: l + "px"

    });


}
