$(document).ready(function(){

	var booksSubMenuSettings = {
		'display' : 'block',
		'position' : 'absolute',
		'top' : '29px',
		'width' : '222px',
		'background' : 'url(/cap/images/nav_images/nav_drop_down.png) bottom left no-repeat',
		//'background-color' : '#25B4F2',
		'z-index' : '999',
		'float' : 'none',
		'margin' : '0',
		'padding' : '2px 0 10px 0',
		'left' : '-999em'
	}

	var subMenuListSettings = {
		'height' : 'auto',
		'width' : '212px',
		'line-height' : '1.5em',
		'margin' : '3px 0 3px 0',
		'padding' : '0 0 0 10px',
		'font-size' : '1em',
		'border' : 'none'
	}

	$('.booksSubNav').css(booksSubMenuSettings);

	$('.booksSubNav > *').css(subMenuListSettings);

	$('.booksNavBut').hover(function () {
		$('.booksSubNav').css('left', '122px');
		//$('.booksNavBut').css('background', 'url(/cap/images/nav_images/nav_02_on.gif) top left no-repeat');
		$('.booksNavBut').addClass('booksNavButOn');
	},
	function () {
		$('.booksSubNav').css('left', '-999em');
		//$('.booksNavBut').css('background', 'url(/cap/images/nav_images/nav_02_off.gif) top left no-repeat');
		$('.booksNavBut').removeClass('booksNavButOn');
	});

	var aboutSubMenuSettings = {
		'display' : 'block',
		'position' : 'absolute',
		'width' : '222px',
		'background' : 'url(/cap/images/nav_images/nav_drop_down.png) bottom left no-repeat',
		'z-index' : '999',
		'float' : 'none',
		'margin' : '0',
		'padding' : '2px 0 10px 0',
		'top' : '-999em',
		'right' : '0'
	}

	$('.aboutSubNav').css(aboutSubMenuSettings);

	$('.aboutSubNav > *').css(subMenuListSettings);

	$('.aboutNavBut').hover(function () {
		$('.aboutSubNav').css('top', '29px');
		//$('.aboutNavBut').css('background', 'url(/cap/images/nav_images/nav_07_on.gif) top left no-repeat');
		$('.aboutNavBut').addClass('aboutNavButOn');
	},
	function () {
		$('.aboutSubNav').css('top', '-999em');
		//$('.aboutNavBut').css('background', 'url(/cap/images/nav_images/nav_07_off.gif) top left no-repeat');
		$('.aboutNavBut').removeClass('aboutNavButOn');
	});

		var ideasSubMenuSettings = {
		'display' : 'block',
		'position' : 'absolute',
		'top' : '29px',
		'width' : '222px',
		'background' : 'url(/cap/images/nav_images/nav_drop_down.png) bottom left no-repeat',
		//'background-color' : '#25B4F2',
		'z-index' : '999',
		'float' : 'none',
		'margin' : '0',
		'padding' : '2px 0 10px 0',
		'left' : '-999em'
	}

	$('.ideasSubNav').css(ideasSubMenuSettings);

	$('.ideasSubNav > *').css(subMenuListSettings);

	$('.ideasNavBut').hover(function () {
		$('.ideasSubNav').css('left', '363px');
		//$('.booksNavBut').css('background', 'url(/cap/images/nav_images/nav_02_on.gif) top left no-repeat');
		$('.ideasNavBut').addClass('ideasNavButOn');
	},
	function () {
		$('.ideasSubNav').css('left', '-999em');
		//$('.booksNavBut').css('background', 'url(/cap/images/nav_images/nav_02_off.gif) top left no-repeat');
		$('.ideasNavBut').removeClass('ideasNavButOn');
	});


	var searchBoxHide = {
			'display' : 'block',
			'position' : 'absolute',
			'left' : '-999em'
		}




	// $('.iain1').hide();
	$('.otherResults').css(searchBoxHide);

	$('.othersHeading').click(function () {
		$('.otherResults').css('position', 'static');
		$('.bookResults').css(searchBoxHide);
		$(this).addClass('othersOn');
		$('.booksHeading').addClass('booksOff');
	});

	$('.booksHeading').click(function () {
		$('.bookResults').css('position', 'static');
		$('.otherResults').css(searchBoxHide);
		$(this).removeClass('booksOff');
		$('.othersHeading').removeClass('othersOn');
	});

});
