/**
 * @author unsub
 */
$(document).ready(function(){
	$("#col2_content").children("div").each(function() {
    	$(this).children("h2").css('padding-left','25px');
	}); 
   
	$("#col2_content").accordion({
		header:'h2',
		autoHeight:false
	});
});
