$(document).ready(function() {

    $("#data").overscroll();
    $('#data').tooltip({title:'&nbsp;',offset: {x: 20, y: 20},hideonclick: false});

});

$(function(){
    $.fn.supersized.options = {  
        startwidth: 1650,  
        startheight: 800,
        minsize: .80,
        slideshow: 0
    };
    $('#supersize').supersized(); 
});

function changeImage(img) {
    $('#bigimage').attr('src','/images/products/410x276/'+img);
}

function resizeHeight() {
    $("#container").width($(window).width()+50);
    $("#content").width($(window).width()-249);
    $("#container, #menu, #leftmenu, #content, #content-data").height($(window).height());
    $("#content-data").height($(window).height()-23);
    $(".middlemenu").height($("#menu").height()-296);
    var topmargin = $("#product-title").position().top;
    $("#data").css("margin-top",topmargin-45+"px");
}
// FIXME
//var quicksand_options = {duration: 1000, attribute: 'class', easing: 'easeInOutQuad', startpos:249};

window.onresize = resizeHeight;

