about = new Image();
about.src = "images/buttons/about.gif";
aboutRO = new Image();
aboutRO.src = "images/buttons/about_over.gif"

testimonials = new Image();
testimonials.src = "images/buttons/testimonials.gif";
testimonialsRO = new Image();
testimonialsRO.src = "images/buttons/testimonials_over.gif"

our_services = new Image();
our_services.src = "images/buttons/our_services.gif";
our_servicesRO = new Image();
our_servicesRO.src = "images/buttons/our_services_over.gif"

sold_transactions = new Image();
sold_transactions.src = "images/buttons/sold_transactions.gif";
sold_transactionsRO = new Image();
sold_transactionsRO.src = "images/buttons/sold_transactions_over.gif"

meet_lior = new Image();
meet_lior.src = "images/buttons/meet_lior.gif";
meet_liorRO = new Image();
meet_liorRO.src = "images/buttons/meet_lior_over.gif"

meet_steven = new Image();
meet_steven.src = "images/buttons/meet_steven.gif";
meet_stevenRO = new Image();
meet_stevenRO.src = "images/buttons/meet_steven_over.gif"

contact = new Image();
contact.src = "images/buttons/contact_us.gif";
contactRO = new Image();
contactRO.src = "images/buttons/contact_us_over.gif"


function over(item) {
    document.getElementById(item).src=eval(item+"RO").src;

}
function out(item) {
    document.getElementById(item).src=eval(item).src;
}
function show(id){
 id=''+id;
 if(document.getElementById(id).style.display == 'none')
     {document.getElementById(id).style.display = 'block';}
 else
     {document.getElementById(id).style.display = 'none';}
}
