﻿$(function(){
    $().browserSizr({
        containerDiv: '#pagecontainer',
        debug: 'off',
        smartphones: 'off',
        lower1024: 'on',
        over1024: 'on',
        over1280: 'on'
    });
});
$(document).ready(function(){
    $(".lower1024 #teaser img").css("width", "249px");
});

$(function() {
	var contentHeight = $("#container").height();
	$("#slot2").css("height" , contentHeight );

	$(window).resize(function(){
	$("#slot2").css("height" , contentHeight );
	});
});

