/**
* @site ParisMonAmi
* @package WordPress
* @subpackage Default_Theme
*
* @author Daniel Fort, Andreas Berndt, Dorothea Schaefer
* @version 1.0
*/

/*
 * Bildschirmbreite bestimmen und Breite des Inhaltsbereich setzen
 */



/* COMMENTED FOR NOW    (samuel) */
//  haha isn't even called, so won't display message...


$(document).ready(function(){
    //$('.scrollable').jScrollPane();
    //$('.sidescrollable').jScrollPane();
})

/*
$(document).ready(function(){
    $("#page").width($(window).width()-250);
    $(".background_img").width($(window).width()-250);
    $(".content_wrapper").width($(window).width()-250);
    $(".gallery_wrapper").width($(window).width());
    $(".envelope_wrapper").width($(window).width()-250);
    $(".envelope_wrapper").height($(".background_img").height());

    $(".envelope_wrapper").each(function(i,v) {
       var heightvalue = $(v).children(".background_img").height();
       if(heightvalue > 0) { $(v).height(heightvalue); }
    });
});

$(window).resize(function(){
    $("#page").width($(window).width()-250);
    $(".background_img").width($(window).width()-250);
    $(".content_wrapper").width($(window).width()-250);
    $(".gallery_wrapper").width($(window).width());
    $(".envelope_wrapper").width($(window).width()-250);
    $(".envelope_wrapper").height($(".background_img").height());
});
*/
