$(function () {
	$('.dropdown_subitems').each(function () {
		$(this).parent().eq(0).hoverIntent({
			timeout: 100,
			over: function () {
			var current = $('.dropdown_subitems:eq(0)', this);
			current.slideDown(100);
			},
			out: function () {
			var current = $('.dropdown_subitems:eq(0)', this);
			current.fadeOut(200);
			}
		});
		});

		$('.dropdown_subitems a').hover(function () {
		$(this).stop(true).animate({paddingLeft: '35px'}, {speed: 100, easing: 'easeOutBack'});
		}, function () {
		$(this).stop(true).animate({paddingLeft: '0'}, {speed: 100, easing: 'easeInBack'});
	});

//	pic1 = new Image(310, 672);
//	pic1.src = '/includes/dropdown_images/dropdown.png';

//	pic2 = new Image(4, 40);
//	pic2.src = '/includes/dropdown_images/dropselectionleft.png';

//	pic3 = new Image(394, 40);
//	pic3.src = '/includes/dropdown_images/dropselectionright.png';

});

