			function ajaxloader(url,place){
		
		$('#load').fadeIn('slow');
		var toLoad = url;
		$(place).html('');
		$(place).load(toLoad) ;
		$(place).fadeIn('slow');
		$('#load').fadeOut('slow');


	}
			function simpleloader(id,speed){
		
		$(id).fadeIn(speed);

	}
			function simplehider(id,speed){

		
		$(id).fadeOut(speed);

	}
			function saver(toLoad,place){
		
		$(place).load(toLoad) ;


	}
			function change(got,att,val){
		
		$(got).attr(att,val);

	}
	

