$(document).ready(function () {
	$(".mainlink").hover(
		function() {
			$(this).css({'backgroundPosition':'100% 50%'});
			$(this).find("a").css({'backgroundPosition':'0% 50%'});},
		function() {
			$(this).css({'backgroundPosition':'100% -1000px'});
			$(this).find("a").css({'backgroundPosition':'0% -1000px'});}
		)
	$(".secondarylink").hover(
		function() {
			$(this).css({'backgroundPosition':'100% 50%'});
			$(this).find("a").css({'backgroundPosition':'0% 50%'});},
		function() {
			$(this).css({'backgroundPosition':'100% -1000px'});
			$(this).find("a").css({'backgroundPosition':'0% -1000px'});}
		)
	
	$(".dropshadow").css("position","relative");

	$(".dropshadow").each(function (i) {
		var temp=this.innerHTML;
		this.innerHTML = '<span class="dsb2">'+temp+'</span>' + '<span class="dsw">'+temp+'</span>' + '<span class="dsb">'+temp+'</span>';
	});
	$(".maincontent").before('<br /><div style="margin: 0px auto 0px auto;width:800px;"><a class="return" href="index.html">Return to Main Page</a></div>')
	.after('<div class="footer"><hr /><div class="copyright">Copyright &copy; Dahab Associates, inc., 2008. All rights reserved.</div></div>');
	
	}
)
