/*
$(document).ready(function() {	
	/*$('#hozmenu li:nth-child(3), #hozmenu li:nth-child(2)').hover(function () {
		$(this).css('cursor', 'pointer');
		$(this).css('color', '#95d890');
	}, function() {
		$(this).css('cursor', 'auto');
		$(this).css('color', '#ffffff');
	});*/
	/*var openCS = false;
	var openNS = false;
	//add .toggle function to appropriate li element
	$('#hozmenu li:nth-child(3)').toggle(function () {
	//make sure the 'other' div is closed
		openCS = true;
		//set 3rd menu links colour to be green whilst div is shown
		$('#hozmenu li:nth-child(3)').css('color', '#95d890');
		//if services is open, close it and change link back to white
		if(openCS == true) {
			$('#toggle_nav_services').slideUp('medium', function() {
				$('#hozmenu li:nth-child(2)').css('color', '#ffffff');
				$(this).removeClass('toggle_show');
				$(this).addClass('toggle_hide');
				openCS = false;
			});
		}
		//this = $('#hozmenu li:nth-child(3) a');
		//$('#main-body').load(this.attr('href'));
		//return false;
		$('#toggle_nav_caseStudies').slideDown('medium', function() {
			$(this).removeClass('toggle_hide');
			$(this).addClass('toggle_show');
			openNS = true;
		});
	}, function() {
		$('#toggle_nav_caseStudies').slideUp('medium', function() {
			$('#hozmenu li:nth-child(3)').css('color', '#ffffff');
			$(this).removeClass('toggle_show');
			$(this).addClass('toggle_hide');
			openNS = false;
		});
	});
	
	$('#hozmenu li:nth-child(2)').toggle(function () {
	//make sure the 'other' div is closed
		openNS = true;
		//set 2nd menu links colour to be green whilst div is shown
		$('#hozmenu li:nth-child(2)').css('color', '#95d890');
		//if case studies is open close it and set text to white
		if(openNS == true) {
			$('#toggle_nav_caseStudies').slideUp('medium', function() {
				$('#hozmenu li:nth-child(3)').css('color', '#ffffff');
				$(this).removeClass('toggle_show');
				$(this).addClass('toggle_hide');
				openNS = false;
			});
		}
		$('#toggle_nav_services').slideDown('medium', function() {
			$(this).removeClass('toggle_hide');
			$(this).addClass('toggle_show');
			openCS = true;
		});
	}, function() {		
		$('#toggle_nav_services').slideUp('medium', function() {
			$('#hozmenu li:nth-child(2)').css('color', '#ffffff');
			$(this).removeClass('toggle_show');
			$(this).addClass('toggle_hide');
			openCS = false;
		});
	});
});
*/
$(function() {
	$('.cf_wrapper').cycle();
});