// JavaScript Document
  
$(document).ready(function(){	

	//color heading randomly
	
	var n = Math.floor(Math.random()*10);
		
	$('#title').css({'background-image' : 'url(/media/heading/heading_'+n+'.jpg)'});

});