/*!
* Generic functions
 */

function removeObject(val) {
	
	$(val).fadeOut('slow', function() {$(this).remove();});
	
}

function loadNews(indexValue) {	
	$("#fader").fadeOut('slow', function() {$(this).load("nupdate.php",{'indexval':indexValue},function(){$(this).fadeIn('slow')})})
}

