$(document).ready(function(){	// Insert current year into footer copyright message	var today = new Date();	var current_year = today.getFullYear();	$('#copyright_year').append(current_year);	// Form validation	if ( $('form.validate').length ) {		$('form.validate').validate();	}	// Biography "SME" subcategories tab wrapper	$('#cat31, #cat32, #cat33, #cat34')		.wrapAll('<div id="cat28"></div>')		.removeAttr('id');	// jQuery UI Tabs	$('.tabs > ul')		.removeAttr('style')		.tabs();		// Login slider box	$("#login_form div").css({ display: "none" });	var cssLogin = {		cursor: "pointer",		backgroundImage: "url(/images/style/bg_login_arrow.gif)",		backgroundRepeat: "no-repeat",		backgroundPosition: "right center"	}	$("#login_form h2")		.css(cssLogin)		.click(function () {			$("#login_form div").slideToggle("normal", function () {				if ($(this).is(":visible")) {					$("#login_form h2").css({ backgroundImage: "url(/images/style/bg_login_arrow_open.gif)" });				} else { 					$("#login_form h2").css({ backgroundImage: "url(/images/style/bg_login_arrow.gif)" });				}			});		});	});