jQuery().ready(function(){
		jQuery('#accordion').accordion({
			alwaysOpen: false,
			autoheight: true,
			active: false
		});
		$("#accordion2").accordion({
			active: false,
			alwaysOpen: false,
			autoheight: false,
			header: 'a.hdr',
			clearStyle: false,
			animated: false
		});
		
		$("#socialContainer").mouseover(function(){
			$(this).css({width:'142px' });		
		});
		
});

