/*******************************************************/
/*  MOUSEOVER - A.J.Reading - v1.0.1 - 13/05/10        */
/*******************************************************/

$(document).ready( function() {
    $('input[type=image], img.hover').each( function(){ 
        // Preload
        var x = new Image();
        x.src = this.src.substring(0, this.src.length - 5) + "2.jpg";

        // Mouseover
        $(this).mouseover( function(){ 
            this.src = this.src.substring(0, this.src.length - 5) + "2.jpg"; 
        });

        // Mouseout
        $(this).mouseout( function(){
            if (this.src.substring( (this.src.length - 5) , (this.src.length) ) == "2.jpg" ) { 
                this.src = this.src.substring(0, this.src.length - 5) + "1.jpg"; 
            }
        });
    });
});

$(document).ready( function() {
    $('.property #thumbs a').each( function() {
        $(this).click( function() {
            $('.property #main img').attr('src', $(this).attr('href'));
            return false;
        });
    });
});
