/* Scripting for websites by Bartosz 'raq' Rakowiecki
 * Usage:
 * loadContent('var1','var2') : val1 - page that will be loaded eg page.php , var2 - plase where it should be loaded eg . #container 
 */
function loadContent(page,post,container,infobox) {
	$(container).fadeOut(400 , function() {
		//$(infobox).html();
		$(infobox).fadeIn(300 , function() {
			$(container).load(page, post , function() {
				$(infobox).fadeOut(450, function() {
					$(container).fadeIn(400);
				})
				});
			});		
		});
		rorate_banner();
}

function rorate_banner() {
	//alert('lece');
	
}