$(function () {
	$('div#directionsDropdown').hoverIntent(
		function(){
			$(this).stop().animate({top:0});
		},
		function() {
			$(this).stop().animate({top:-108});
		}
	);
    $('#features').slickslider({
        controls: '#featuresControls',
        startIndex: 0,
        delay: 5000,
        hideControlsWhenSingle: true
    });
	$('li.primary').hoverIntent(
		function(){
			$(this).children('div.dropdown,div.arrow').show();
		},
		function(){
			$(this).children('div.dropdown,div.arrow').hide();
		}
	);
	$('div.dropdown').siblings('a').css({paddingRight:45}).parent().append('<div class="arrow"></div><div class="indicator"></div>');
	$("#popupNewsletter").fancybox({
		'type'				: 'iframe',
		'width'				: 300,
		'height'			: 400
	});

	//convert richtext popup thumb images to fancybox images
	$(".text a").each(function(){
		var href = $(this).attr("href");
		if(href != undefined){
			var index = href.indexOf("viewImage");
			if(index > -1){
				href = href.replace("javascript:viewImage('", "");
				href = href.replace("')","");
				$(this).attr("href", href);
				$(this).addClass("single_image"); 
			}
		}
	});
	$("a.single_image").fancybox({
		'autoScale'			: true,
		'centerOnScroll'	: true
	});
	//end convert richtext popup images to fancybox images
});
