jQuery(function()
{
	$('form').each(function() {
		var width = 0;
		
		$('label:not(.noresize)', this).each(function() {
			if ($(this).width() > width) width = $(this).width();
		});
		width+=10;
		$('label:not(.noresize)', this).each(function() {
			$(this).css('display', 'inline-block');
			$(this).width(width);
			$(this).next('input:not(.noresize)').width(600-width-50);
		});
	});
	
	$('#notifs').hide();
	
	$('#notifs p').each(function() {
	$(this).wrapInner("<div>");
	$('>div',this).before('<img class="quitinfo" src="/assets/images/ico/del.png" />');
	});
	 
	$('.quitinfo').click(function() {
		$(this).parent("p").remove();
	});
	
	$('#notifs').slideDown(1000);
	
	$(".clickselect").click(function(){
		$(this).select();
	});
	
	$('a[rel="external"]:not(.except)').attr('target', '_blank');
});
