/*
	Scripts used for this theme.
	This file Requires jQuery to opperate.
*/


/* Swap the Background */
function swapBG(){
	var bgImages=new Array();

	var base = "http://nepaltip.dawehost.com/wp-content/themes/LTIP/images/";

	bgImages[1] = "url(" + base + "rotate1.gif)";
	bgImages[2] = "url(" + base + "rotate2.gif)";
	bgImages[3] = "url(" + base + "rotate3.gif)";
	bgImages[4] = "url(" + base + "rotate4.gif)";
	bgImages[5] = "url(" + base + "rotate5.gif)";
	bgImages[6] = "url(" + base + "rotate6.gif)";
	bgImages[7] = "url(" + base + "rotate7.gif)";
	


	var rf=Math.floor(Math.random()*bgImages.length);
	$(".headerInner").css("backgroundImage", bgImages[rf]);
}


$(document).ready(function(){
	$("#headlinks li:last").addClass("last");
	$(".subnav li:last").addClass("last");
});