$(document).ready(function(){
    $("#self").change(function() {        
        if($("#self").val() == 'yes') {
            $("#agent_info").hide();
        }else {
            $("#agent_info").show();
        }
        }
    );
    $("#type").change(function() {
        if ($("#type").val() == 'land') {
            $("#size_m").html("a.");
        }else {
            $("#size_m").html("m<sup>2</sup>");
        }
        
    });
    
    var newsoption3 = {
        firstname: "mynews",
        secondname: "showhere",
        fourthname: "button_",                
        newsspeed:'6000',   
        newscountname: "counter",     
        isauto:true,
        disablenewscount:false, // true for disable news counter(Deault is false)
        imagedir:'../../../wi/default/img/d/'
    }
    
    $.init_news(newsoption3);
    
    //var myoffset3=$('#button_').offset();
    //var mytop3=myoffset3.top-1;
    //$('#button_').css({top:mytop3});
    if($('#button_').length){
        $('#button_').css({top:$('#button_').offset().top - 1});
    }
    
});