var Website = {
	
	init: function(){
		this.customSelect();
		this.cssFixes();
	},
	
	customSelect: function(){
	  if($('form.contact').length) {
	    $('form.contact').jqTransform();
	  }
	  if($('form.select').length) {
	    $('form.select').jqTransform();
	  }
	  
	},
	
	cssFixes: function() {
	  $('#home-boxes .box:last').addClass('last-box');
	  $('#home-boxes .box:first').addClass('first-box');
	  $('.small-article:nth-child(4n)').addClass('small-article-4n');
	  $('.clients li:nth-child(4n)').addClass('nth-child-4n');
	}
	
}

jQuery(document).ready(function() {
	
	Website.init();
	
});


if (typeof DD_belatedPNG !== 'undefined') {
    var PNG_fix_selectors = [
        '#home-boxes em',
        '.home-content .right li img',
        '#content .gallery',
        '#footer .production',
        'a span'
    ];
    DD_belatedPNG.fix(PNG_fix_selectors.join(','));
}
