jQuery(document).ready(function(){					
	/* Paralax scrolling effect with auto-regulation */			
	var res_x = ( document.documentElement.clientWidth ? document.documentElement.clientWidth : document.body.clientWidth )
	$("#paralax_part div.header_layers").each(
		function( intIndex ){ 
			this.style.width = res_x + 40 + intIndex*50 + "px";
			this.style.height = 90 + intIndex*10 + "px";
			this.style.zindex = 10 + intIndex;				   
		});				
	jQuery('#paralax_part').jparallax();
});
