//initialize JS orbit

$(document).ready(function() {

hoverOut();

$(".orbit-wrapper").hover(hoverOver,hoverOut);

});


function hoverOver(){
	$('.orbit-wrapper div.slider-nav').fadeIn(350);
};

function hoverOut(){
	$('.orbit-wrapper div.slider-nav').fadeOut(350);
};

