Contact Us If you have any questions or enquiries please feel free to contact us on the details provided below or alternatively you can complete our online enquiry form and we will get back to you as soon as possible. Phone 0414 472 511 Email environ.js@gmail.com Address 18/82 Levanswell Road, Moorabbin VIC 3189 | |
$(document).ready(function() {
if($( '#menu .subContainer li' ).hasClass( "current" )) {
var menuName = $( "#menu .subContainer .current a" ).text();
$( "#subBanner .container" ).prepend('
' + menuName + '
');
} else if($( '#menu nav > li' ).hasClass( "current" )) {
var menuName = $( "#menu nav > li.current > a" ).text();
$( "#subBanner .container" ).prepend('
' + menuName + '
');
}
});
//MOVE ALL SIMILAR BUTTONS TO SAME SECTION
var numItems = $('.basicFrame').length;
$(".basicFrame").each(function(i){
if (numItems < 6) {
$(this).removeClass('col-4');
$(this).addClass('col-' + numItems);
}
if (i === 0) {
$(this).parents('.contentImgRow').addClass('firstButtonSection');
}
if (i > 3) {
$(this).parents('.photoSection').addClass('remove');
$(this).appendTo('.firstButtonSection');
}
});
$('.photoSection.remove').remove();