// JavaScript Document

jQuery(function($) {
    $.supersized({
        //Background image
        slides: [{
            image: 'test.jpg',
            fit_portrait: 1,
            //Portrait images will not exceed browser height
        }]
    });
});


jQuery(function($) {

    $(document).ready(function() {

        var h = $(window).height();
        var w = $(window).width();
        var dim = 0;
        if (h > 478) {
            (dim = (h / 2) - 250)
        }
        $("#contentt").css('margin-top', dim);

    });




    $(window).resize(function() {



        var h = $(window).height();
        var w = $(window).width();
        var dim = 0;
        if (h > 498) {
            (dim = (h / 2) - 250)
        }
        $("#contentt").css('margin-top', dim);
    });
});


jQuery(function($) {
    $.supersized({
        //Background image
        slides: [{
            image: 'test.jpg',
            fit_portrait: 1,
            //Portrait images will not exceed browser height
        }]
    });
});
