$(function(){                                               
    $('.maincontent *').watch("height",function(){
        $('.maincontent').css('padding-bottom','20px');    
        if($('.maincontent').height() < 600){
            $('.maincontent').css('padding-bottom',620 - $('.maincontent').height() + 'px');
        }   
    },100,'page_watch');                                             

    setMinPageHeight();  
    
    if($('.page').height() < 504){
        $('.page').height('504');
    }   
    
    if ($.browser.safari) {
        $('#bgleaf').attr('src',"../img/template/bgleaf2.gif");
    }
    else{  
        $('#bgleaf').attr('src',"../img/template/bgleaf.jpg");
    }                            
});

function setMinPageHeight(){
    $('.maincontent').css('padding-bottom','20px');  
    if($('.maincontent').height() < 600){
        $('.maincontent').css('padding-bottom',620 - $('.maincontent').height() + 'px');
    }                                  
}
        
function sendMail(formid){
    $.post('utilities/mailAjax.php',$('#' + formid).serialize(true),function(msg){  
        if(msg == 'No Error'){
            $('#mailmessage').css('color','#52612A');  
            $('#mailmessage').html('Thank you, your message has been sent.'); 
            
            $('#firstname').val('');          
            $('#lastname').val('');          
            $('#company').val('');          
            $('#email').val('');          
            $('#message').val('');        
        }   
        else{
            $('#mailmessage').css('color','#FF0000');  
            $('#mailmessage').html(msg);  
        } 
    });            
}