$(document).ready(function(){
	
	$("#primary_nav li").hover(
		function(){
			$(this).children("ul").show();					
		},
		function(){
			$(this).children("ul").hide();
		}
	);
	
	$("a[rel~='lightbox']").fancybox({
		'width' : 810,
		'height' : 500,
		'padding' : 0,
		'overlayColor' : '#FFF',
		'overlayOpacity' : '0.5',
		'autoDimensions' : false,
		'showNavArrows' : false
	});
	
	$("input[name='Question']").focus(function(){
		$(this).val("");							  
	});

    $(function () {
        $('.scroll-pane').jScrollPane(
		{
		    showArrows: true,
		    horizontalGutter: 10,
		    arrowButtonSpeed: 2.5,
            mouseWheelSpeed: 2.5
		}
	);

    });
	
});
