
// Contain any site specific code in an object
function WebsiteCode() 
{
	// Init function called on page load
	this.init = function() {
		this.layoutfixes();
	};
	
	// Layout fixes (IE mostly)
	this.layoutfixes = function()	{
		// first and last child classes for ie
		if ($.browser.msie) {
			$('li:first-child').addClass('first-child');
			$('li:last-child').addClass('last-child');
		};
	};
	
}

// Create and initialise the site code
var thesite = new WebsiteCode();
$(function() {
	thesite.init();
});
