
function porfolio_menu_text(q){
    
    body_sect1 = $("body.section-1")[0];
    texts = $("div.texts")[0];
    
    if(body_sect1 && texts){
        
        if(!q){
            hash=document.location.hash;
            if(hash){
                //alert(hash);
            }
        }
    
        sect_title = $("div.texts li.section-title");
        for(i=0;i<sect_title.length;i++){
            ul = sect_title[i].parentNode;
            //alert(ul);
        }
    }
	
}

$(document).ready( function(){
    porfolio_menu_text();
});
