$(function(){
	
	$('.section h3').append('<span class="point"></span>');
	
	var randomImages = ['Alex_Shakeitup','Cena_Rock','BiebandDarth','Captianamerica'];
	var rndNum = Math.floor(Math.random() * randomImages.length);
	$("#bg").css({ background: "url(/images/" + randomImages[rndNum] + ".jpg) top center no-repeat fixed" });
	
	
	
	//$(".content").height($(".leftCol").height() - 66);
	
	/*$('.cats > li').hover(function(){
		
		$(this).children('ul').slideDown();
		}, function(){
		$(this).children('ul').slideUp();
	});*/
	
	
});
