$(document).ready(function() {
    var _footSmallHeight = $("#footSmall").height();//40
    var _footBigHeight = $("#footBig").height();//170
    var _miniHeight = 530;

    init();


    $(window).resize(function() {
        changeHeightFlashBox();
    });
    

    function changeHeightFlashBox(){
        var windowHeight = $(window).height();   // returns height of browser viewport
        var documentHeight = $(document).height(); // returns height of HTML document
        var newHeight = windowHeight -(_footSmallHeight+_footBigHeight);
		// alert(newHeight);
		if(newHeight < _miniHeight){newHeight=_miniHeight}
		$("#flashbox").height(newHeight+50);
    }
    function init(){
        changeHeightFlashBox();
        $("div.foo").carousel({ loop: true,dispItems: 2 } );
     
    }

Cufon.replace('.created', {
										hover: { color: '#FFFFFF' }
								});    
});
