//JS Version 10
//Dated: NOvember 08, 2009
//Author: Mukesh Yadav (http://www.mukeshyadav.com)

$(function(){
	
	//Product Block	
	$("#prodBlock").find("div.prodBlock:last").addClass("noneBdr");
	
	//Top Navigation
	//$("div#header").load("header.html");
	
	//Footer Navigation
	$("div#footer").load("footer.html", function(){
		$("div#footer").find("ul li:last a").addClass("last");												 
	});
	
	//Copyright
	$("div#copyright").load("copyright.html");
	
	//IRS Text
	$("#vertScroll").find("a.nextPage").hover(function(){
		$(this).addClass("nextPageOver");												   
	}, function(){
		$(this).removeClass("nextPageOver");												   
		});
	
	$("#vertScroll").find("a.prevPage").hover(function(){
		$(this).addClass("prevPageOver");												   
	}, function(){
		$(this).removeClass("prevPageOver");												   
		});
	
	
	
	
	
});