/*
	About the web developer for this website.
    Muslum Torun -> Interactive Art Director of Mavi Ajans
	Personal Site: http://muslumtorun.com
	Contact: info@muslumtorun.com
*/
var ISFOOTER = true;
$().ready(function () {
    $("#sitemenu li").menu(); //submenu run
    $(window).scroll(function () {
        if ($(document).scrollTop() > 300) {
            $("#upbtn").fadeIn();
            $("#upbtn").bind("click", function () {
                $("body, html").stop().animate({ scrollTop: 0 }, {duration: 1000});
            });
        }
        else
            $("#upbtn").fadeOut();
    });
});


$(window).bind("load resize", setFooter);

function setFooter() {
    if (ISFOOTER) {
        var _winHeight = $(window).height();
        var _footerHeight = $("footer").outerHeight();
        var _contentHeight = $("#container").height();
        if (_winHeight > parseInt(_contentHeight + _footerHeight)) {

            $("footer").css("margin-top", _winHeight - parseInt(_contentHeight + _footerHeight) + "px")
        }
        else {
            $("footer").css("margin-top", "0px")
        }
    }
}
