$(document).ready(function() {

	$('.add').click(function() {
		$(this).hide('slow');
		$('#add_'+$(this).attr('id')).show('slow');
	});

	$('#tabs2').tabs();
	
	$('.flags img.selectable').hover(function() {
		if ($(this).attr("src").replace("/img/flag/","").replace(".png","").length == 2) {
			$(this).attr("src",$(this).attr("src").replace(".png","_active.png"));
		} else {
			$(this).attr("src",$(this).attr("src").replace("_active.png",".png"));
		}
	});
	
});




