var selIndex=0;
$(document).ready(function(){
		RunFirstAcc();
		$('.accordCon h3').click(function(){
		thsIndex=$('.accordCon h3').index(this);	
		if(thsIndex!=selIndex){
		selIndex=thsIndex;
		thsWidth=$('.accordCon .outC').eq(thsIndex).children('.innC').width();
		//if($.browser.msie && jQuery.browser.version=='7.0'){thsWidth=thsWidth+20;}
		$('.accordCon .outC').animate({width:0},{duration:300,queue:false}).eq(thsIndex)
		.animate({width:thsWidth},{duration:300,queue:false});
		}
	});
});


function RunFirstAcc(){
		thsIndex=selIndex;
		thsWidth=$('.accordCon .outC').eq(thsIndex).children('.innC').width();
		//if($.browser.msie && jQuery.browser.version=='7.0'){thsWidth=thsWidth+20;}
		$('.accordCon .outC').animate({width:0},{duration:0,queue:false}).eq(thsIndex)
		.animate({width:thsWidth},{duration:0,queue:false});
}