jQuery(document).ready(function(){

jQuery('.tabbed .nav a').click(function() {
	jQuery('.tabbed .nav a.current').removeClass('current');
	jQuery(this).addClass('current');
	jQuery('.tabbed .section').css('display', 'none');
	jQuery('.tabbed #' + jQuery(this).attr('href').substring(1, jQuery(this).attr('href').length)).css('display', 'block');
	return false;
});

jQuery('#feedback-form').dialog({
	autoOpen: false,
	modal: true,
	title: 'Get in touch with us',
	width: 376,
	height: 470,
	resizable: false
});

jQuery('#footer .button').click(function() {
	jQuery('#feedback-form').dialog('open');
	return false;
});

jQuery('#login-form').dialog({
	autoOpen: false,
	modal: true,
	title: 'Log in to your account',
	width: 376,
	height: 220,
	resizable: false
});

jQuery('#nav .login, #tab-2 .login').click(function() {
	jQuery('#login-form').dialog('open');
	return false;
});

});
