
     $(document).ready(function(){
      readyToGo();
      var rHeight =$('vgGraphic').width();
             

     });
              function readyToGo() {
         
             $('#vgGraphic').hide();
             document.getElementById("vgGraphic").src = "images/mainpage/vittguille7.jpg";
             resizePicture();
    
             $('#vgGraphic').fadeIn(12000);

         }
         function resizePicture() {
             document.getElementById("vgGraphic").src = "images/mainpage/vittguille7.jpg";
             var tempWidth = document.body.clientWidth - 675; 
		
             if (tempWidth > 250)

                 document.getElementById("vgGraphic").style.width = tempWidth + "px";
             else
                 document.getElementById("vgGraphic").style.width = "250px";
                 //left: 350px;
			
                 var gHeight = document.getElementById("vgGraphic").style.height;
                 var element = document.getElementById("splashpic");
                 
               if (element)
               {
                 //alert("element exists");
 
                 //var aStyle = window.getComputedStyle(element,null);
 
                 element.style.left="350px";
                
               
               
                 //aStyle = window.getComputedStyle(element,null);
               
                      
                                  
               }
                 else
                 alert("splashpic not found");

                // document.getElementById('splashpic').style.left = 350;
				  //alert("resizePicture2 " +1 + document.getElementById("splashpic").style.left);
				
                 //var rHeight = document.body.clientHeight - 103;
                // document.getElementById("mprightblock").style.height = 600;//  rHeight;
       
         }



