$(document).ready(function(){
	$('div.yellow-container').append('<div class="yellow-tl"></div><div class="yellow-bl"></div><div class="yellow-tr"></div><div class="yellow-br"></div>')
	$('div.white-container').append('<div class="white-tl"></div><div class="white-bl"></div><div class="white-tr"></div><div class="white-br"></div>')
	$('div.grey-container').append('<div class="grey-tl"></div><div class="grey-bl"></div><div class="grey-tr"></div><div class="grey-br"></div>')
	
	$('a[@rel=ext]').each(function(){
		 if($.browser.msie)
		 {
		 	$(this).attr('target','_blank');
		 }
		 else
		 {
		 	$(this).attr('onclick','window.open(\''+ $(this).attr('href') +'\'); return false; ');
		 }
	});
	
	if(navigator.userAgent.indexOf('MSIE 6') > -1)
	{
		$('input[@type=image]').addClass('pngfix');
		$('img[@src:contains(.png)]').addClass('pngfix');
	}
})