jQuery(document).ready(function($){

	$('.fadein img:gt(0)').hide();
	setInterval(function(){$('.fadein :first-child').fadeOut().next('img').fadeIn().end().appendTo('.fadein');}, 3000);

	$("ul.item-list li br").each(function(){ // strip BR elements
			$(this).remove();
	});
	
	$("#updateProfile table td:odd").addClass("tbl_label");
	$("#updateProfile table td:even").addClass("tbl_input");

	$("#updatePassword table td:even").addClass("tbl_label");
	$("#updatePassword table td:odd").addClass("tbl_input");

	$("#UpdateSetting table td:even").addClass("tbl_label");
	$("#UpdateSetting table td:odd").addClass("tbl_input");
	$("#UpdateSetting table tr:last").css("display", "none");

	$("#signUp table td:even").addClass("tbl_label");
	$("#signUp table td:odd").addClass("tbl_input");

	$("#updatePlaces table td:even").addClass("tbl_label");
	$("#updatePlaces table td:odd").addClass("tbl_input");

	$("#updateEventCategory table td:even").addClass("tbl_label");
	$("#updateEventCategory table td:odd").addClass("tbl_input");

	$("#updateAdvertisementCategory table td:even").addClass("tbl_label");
	$("#updateAdvertisementCategory table td:odd").addClass("tbl_input");

	$("#updateTrip table td:even").addClass("tbl_label");
	$("#updateTrip table td:odd").addClass("tbl_input");

	$(".profile_detail table td:odd").addClass("tbl_label");
	$(".profile_detail table td:even").addClass("tbl_input");

	var highestCol = Math.max($('#sidebar').height(),$('#content').height());
	$('#sidebar').height(highestCol);
	$('#content').height(highestCol);

	$(".edit_account_box").hide(); 
	$("a.edit_account").click(function(){
		$(this).next(".edit_account_box").slideToggle("fast");
	});

});
