// JavaScript Document
$(function() {
		 
       
		$("A.external").click( function() {
       		 window.open( $(this).attr('href'), 'external_w' );
        	return false;
       });
		 
		$('a.lightbox-album').lightBox(); // Select all links with lightbox class  
		
        $("ul.sf-menu").superfish({ 
            animation: {height:'show'},   // slide-down effect without fade-in 
            delay:     1200               // 1.2 second delay on mouseout 
        }); 
     
		 
		$("#property").tablesorter({ 
         
        headers: { 
             //(we start counting zero) 
            0: { 
                // disable it by setting the property sorter to false 
                sorter: false 
            }, 
             
            5: { 
                
                sorter: false 
            } 
        } 
    }); 
		 
		 $("#developments").tablesorter({ 
         
        headers: { 
             //(we start counting zero) 
            0: { 
                // disable it by setting the property sorter to false 
                sorter: false 
            }, 
             
            5: { 
                
                sorter: false 
            } 
        } 
    }); 
		
		$("#commercial").tablesorter({ 
         
        headers: { 
             //(we start counting zero) 
            0: { 
                // disable it by setting the property sorter to false 
                sorter: false 
            }, 
             
            5: { 
                
                sorter: false 
            } 
        } 
    }); 
		$("#condos").tablesorter({ 
         
        headers: { 
             //(we start counting zero) 
          
             
            5: { 
                
                sorter: false 
            } 
        } 
    }); 
		
		$("#villas").tablesorter({ 
         
        headers: { 
             //(we start counting zero) 
            
             
            6: { 
                
                sorter: false 
            }, 
			
			7: { 
                
                sorter: false 
            } 
        } 
    }); 
});
 