function menuOver () {
	$(this).children('a:first').addClass('hover');
	$(this).children('ul').show();
}
function menuOut () {
	$(this).children('a:first').removeClass('hover');
	$(this).children('ul').fadeOut('20');
}
		
$(document).ready(function() {

	$('.left-column ul li a').attr('title', '');
	$('.left-column ul li').has('ul').addClass('parent');

	var config = {
		over: menuOver,
		timeout: 50,
		out: menuOut
	};
	$('.left-column ul li').hoverIntent(config);

	if ($('.slider-wrap').length) {
		$('.slider-wrap ul li:first-child a').addClass('active');
		$('.slider-wrap .slides .slide').hide();
		$('.slider-wrap .slides .slide:first-child').show();
		$('.slider-wrap ul li a').click(function() {
			$(this).parents('.slider-wrap').find('ul li a').removeClass('active');
			$(this).addClass('active');
			var index = $(this).parent().parent().find('li').index($(this).parent());

			$(this).parents('.slider-wrap').find('.slides .slide').hide();
			$(this).parents('.slider-wrap').find('.slides .slide:eq(' + index + ')').fadeIn(300);
			return false;
		});
	}
	
});

