$(document).ready(function(){
    
	$(".h2styled, .rounded, .UserMenu_container").corner("round 3px");

	$(".usualBlock, .general_container, #general_middle, #containerAuction").each(function(){
		setRadius = 6;
		getW = parseInt($(this).css('width')); 
		getC = '#ffffff'; // $(this).css('backgroundColor');
		$(this).before('<div style="width:'+getW+'px; height:8px; background:transparent; position:relative;"><div style="position:absolute; top:0; left:0; width:8px; height:8px; background:URL(/javascripts/corners/tl.png) no-repeat 0 0;"></div><div style="position:absolute; top:0; left:8px; height:8px; width:'+(getW-16)+'px; background:'+getC+';"></div><div style="position:absolute; top:0; right:0; width:8px; height:8px; background:URL(/javascripts/corners/tr.png) no-repeat 0 0;"></div></div>');
		$(this).after('<div style="width:'+getW+'px; height:8px; background:transparent; position:relative;"><div style="position:absolute; top:0; left:0; width:8px; height:8px; background:URL(/javascripts/corners/bl.png) no-repeat 0 0;"></div><div style="position:absolute; top:0; left:8px; height:8px; width:'+(getW-16)+'px; background:'+getC+';"></div><div style="position:absolute; top:0; right:0; width:8px; height:8px; background:URL(/javascripts/corners/br.png) no-repeat 0 0;"></div></div>');
		});

	});
