$(function(){
	$("table.innovations tr:even").addClass("rowOn");
	$("table.innovations tr:odd").addClass("rowOff");
	
	$("table.inthenews tr:even").addClass("rowOn");
	$("table.inthenews tr:odd").addClass("rowOff");
	
	$("table.atthelab tr:even").addClass("rowOn");
	$("table.atthelab tr:odd").addClass("rowOff");
	
	$("table.appetite tr:even").addClass("rowOn");
	$("table.appetite tr:odd").addClass("rowOff");
	
	$("table.ourshout tr:even").addClass("rowOn");
	$("table.ourshout tr:odd").addClass("rowOff");
	
	$("table.thinking tr:even").addClass("rowOn");
	$("table.thinking tr:odd").addClass("rowOff");
	
	$("table.mailbox tr:even").addClass("rowOn");
	$("table.mailbox tr:odd").addClass("rowOff");
	
	$("table.formBoxBlue tr:even").addClass("rowOn");
	$("table.formBoxBlue tr:odd").addClass("rowOff");
	
	
	$(".homeabout , .homeonenews , .homethinking , .homenews , .homecontact , .homecapabilities , .homemarket , .homestrategy , .homepanel ").hover(function(){
		$(this).addClass("homeabouthover");
	},function(){
		$(this).removeClass("homeabouthover");
	}
	
	);
	
	$("a.topNavIcon").hover(function(){
		$(this).addClass("topNavIconHover");
	},function(){
		$(this).removeClass("topNavIconHover");
	}
	
	);

        $("a[rel=fancybox]").fancybox({
            'titlePosition'		: 'inside'
        });

});


