Cart 0

Company Profile

At Contract Mirrors Ltd we are dedicated to producing a range of the highest quality mirrors products for clients in the dance, leisure, theatre, film, exhibition industries and also in domestic properties.

 

From small installations to large bespoke projects, our commitment to service and quality is one of the reasons our products are widely accepted and used throughout the UK and Europe.

 

Our commitment to quality is followed through in every aspect of the manufacturing and fitting process and as specialists; our experienced team offer the same dedication to service.

 

In-house manufacturing and effective communications systems keep us in control and in touch with our clients from initial briefing through to “on time” delivery and final fitting. Visit our Contact Page for further information and a quotation.

Company

$("#SiteNav li ul").each(function(){ var len = jQuery(this).find('li').length; if(len > 9){ $.fn.extend( { list2Columns: function(numCols) { var listItems = $(this).find('li'); /* get the list data */ var listHeader = $(this); var numListItems = listItems.length; var numItemsPerCol = Math.ceil(numListItems / numCols); /* divide by the number of columns requires */ var currentColNum = 1, currentItemNumber = 1, returnHtml = '', i = 0; var classname = $(this).parent().attr('id'); /* append the columns */ for (i=1;i<=numCols;i++) { $(this).parent().append(''); } /* append the items to the columns */ $.each(listItems, function (i, v) { if (currentItemNumber <= numItemsPerCol){ currentItemNumber ++; } else { currentItemNumber = 1; currentColNum ++; } $('.list-column-'+classname+currentColNum).append(v); }); $(this).parent().addClass('expended-div'); $(this).remove(); /*clean previous content */ } }); $(this).list2Columns(3); } });