
//	Uncomment to load the Firebug console
//	window.loadFirebugConsole();

	var Prodar = {

		init : function() {

			Prodar.faq();
			Prodar.tweaks();

		},

		faq : function() {

			$('.q').css({cursor: 'pointer'}).click(function () { $(this).next().toggle(); }).next().hide();
	
		},

		tweaks : function () {

			//	Hide link text so background image 'becomes' the link
			
			//	Logo
			$('h1 a').wrapInner('<span></span>');
			//	Business summary link
			$('#footer a.download_summary').wrapInner('<span></span>');

			//	Tweak CSS using jQuery to take advantage of
			//	CSS selectors that IE doesn't understand.

			$('ul.header_links li:last').css({textIndent: 0});
			$('#navigation li:last a').css({marginRight: 0, width: 156});
			$('#sub_nav li:last').css({border : 'none'});

		}

	};

	$(function() { Prodar.init(); });

