
if (navigator.userAgent.indexOf("MSIE 6")>0)
	$( document ).ready( onSelectionReady );

function onSelectionReady()
{
	var children = $( ".SelectionContent" ).children();
	for (var i=0 ; i<children.length ; i++)
		$(children[i]).css("width" , "302px") ;

}
