﻿

$().ready(function(){
    $(window).bind('load',function(){
        $("#footer").css("padding","0px")
        try{
        var rheight = getWindowHeight();
        var rwidth = getWindowWidth()
        
        if((document.getElementById("homeFlash")) && rheight < 580){
         document.getElementById("homeFlash").style.height = "580px";
            //alert(rheight)
        }
        else {
           document.getElementById("homeFlash").style.height = parseInt(rheight - 113) + "px";
        }
        init();
        }
        catch(e){
            //alert(e)			
        }
		
    });

    $(window).bind('resize',function(){
        var rheight = getWindowHeight();
        var rwidth = getWindowWidth()
        if((document.getElementById("homeFlash")) && rheight < 580){
         document.getElementById("homeFlash").style.height = "580px";
            //alert(rheight)
        }
        else {
           document.getElementById("homeFlash").style.height = parseInt(rheight - 109) + "px";
        }
        //alert(rheight)
    });
})