
	$(document).ready(function () {	
    
        winWidth = $(window).width();
        winHeight  = $(window).height(); 
        
        // alert("window size: "+winWidth+"x"+winHeight);
        
        if(winHeight<500) winHeight=500;
        
        // set up, when page loaded
        //$("#movieCont").css("width",winWidth+"px");
        $("#movieCont").css("height",winHeight+"px");
        
        // set up, when window resized
        $(window).bind('resize', function() {
            //$("#movieCont").css("width",winWidth+"px");
            $("#movieCont").css("height",winHeight+"px");
        });    
        
	});
    
    function colorBoxGoogleMaps(){

     /*   $("body").append("<div id='googleMaps' style='height:"+winHeight+"px;'><div class='googleMapsIn'><iframe src ='googlemaps2.html' frameborder='0' scrolling='no' width='100%' height='100%'></iframe></div></div>");
        
        $(".googleMapsIn").css("margin-top","50px");
        
        $("#googleMaps").click(function(){
            $("#googleMaps").prepend(this);
        });*/
        
        
    
    }
	

