// JavaScript Document

// Dropdown menus
function hover (el) {
  el = document.getElementById (el);
  // Hide the last:
  if (last_item) {
    last_item.className = "";
  }
  last_item = false;
  // Show this one:
  el.className = "rolo";
}
var last_item = false;
function unhover (el) {
el = document.getElementById (el);
  last_item = el;
  setTimeout ('if (last_item) { last_item.className = ""; }', 1000);
}

// img and div rotation script
var current_img = 0;
var boxsrc_1 = '<h3>CUT OUT THE BITTERNESS FOR A SWEETER BUSINESS PERFORMANCE</h3>' +
					'<p><a href="harmony">If you don’t act quickly to resolve grievances and disputes, they can have a significant and expensive impact on the performance of your business. JGA HR Consulting will provide the expert advice to enable you to manage the situation and achieve an effective solution. </a></p>';
					
var boxsrc_2 = '<h3>NURTURE YOUR PEOPLE FOR A FLOURISHING BUSINESS</h3>' +
					'<p><a href="talent">People are crucial to the success of any business. ' +
					'JGA HR Consulting will provide you with the very best advice and support on the best ways to grow and develop your teams for maximum performance.</a></p>';

var boxsrc_3 = '<h3>MAKE THE RIGHT DEPLOYMENTS TO KEEP YOUR BUSINESS MOVING ON</h3>' +
					'<p><a href="change">Businesses need to adapt and change constantly to stay ahead. ' +
					'JGA HR Consulting will work with you to implement transformation within your business, winning the hearts and minds of your workforce as we go. </a></p>';
					
var boxsrc_4 = '<h3>SAFEGUARD YOUR MOST IMPORTANT ASSETS AND SECURE YOUR BUSINESS</h3>' +
					'<p><a href="people">Your business is required by UK law to have access to “competent” health and safety advice. We will ensure that your people are properly protected from occupational hazards and illness, whilst minimizing the risk of a claim against the business in the event of an accident.</a></p>';
					
var boxsrc_5 = '<h3>TURN ON OUR EXPERT HR ADVICE WHENEVER YOU NEED IT</h3>' +
					'<p><a href="about">Real-world HR Solutions that save you money and improve your competitiveness, without the expense of HR personnel on the pay-roll.</a></p>';
function do_rot (el_page) {
	//only rotate on home page, else pick a number...
	//alert (el_page);
	if(el_page == 5){
		current_img = (current_img >= 5) ? 1 : current_img + 1;
		if (current_img < 6) {
			document.getElementById("swapbox").innerHTML =	eval("boxsrc_"+current_img);
			document.getElementById("picbox").className = "picbox_" + current_img;
		} 
		setTimeout ("do_rot (5)", 5500);
	}else{
		document.getElementById("swapbox").innerHTML =	eval("boxsrc_"+el_page);
		document.getElementById("picbox").className = "picbox_" + el_page;
	}
}
