// 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  
		
  
     
		 
		$("#properties").tablesorter({ 
         
        headers: { 
             //(we start counting zero) 
            0: { 
                // disable it by setting the property sorter to false 
                sorter: false 
            } 
             
           
        } 
    }); 
	 
});
 