window.addEvent('domready',function() {
    $(document.body).addClass('js');
    $$('.content').each(function(el) {
	new Element('div').setStyle('clear','both').injectInside(el);
    });
    $$('#primary .content').each(function(content){
	new Element('div').addClass('content-top').injectTop(content);
	new Element('div').addClass('content-bottom').injectInside(content);
    });
    $$('.product-child #primary a').each(function(a) {
	if (a.href.substr(a.href.length-4,4)=='.jpg') a.addClass('smoothbox').setProperty('rel','gallery-products');
    });
    TB_init();
});