jQuery(document).ready(function(){
	twicet_improvements(); // adds some improvements to the site
});

function twicet_improvements(){
	jQuery(".featured_item").prepend("<div class='corner_left ie6fix'></div><div class='corner_right ie6fix'></div>");
	
	if((jQuery.browser.msie && parseInt(jQuery.browser.version) < 7)){
		jQuery("#nav, .navwrap, #main, #featured, #featured_bottom, .content_top, #content, #footer").addClass("ie6fix");
	}
}

