// JavaScript Document
$(document).ready(function() {
	$(".conSlider-item1").hover(function() {
		$(this).stop().animate({ width: '650px' }, { queue: false , duration: 500 });
		$(this).siblings().animate({ width : '69px' }, { queue: false , duration: 500});  
	},function() {
		$(this).stop().animate({ width: '185px' }, { queue: false , duration: 500 });
		$(this).siblings().animate({ width : '185px' }, { queue: false , duration: 500});  
	});

	$(".conSlider-item2").hover(function() {
		$(this).stop().animate({ width: '650px' }, { queue: false , duration: 500 });
		$(this).siblings().animate({ width : '69px' }, { queue: false , duration: 500});  
	},function() {
		$(this).stop().animate({ width: '185px' }, { queue: false , duration: 500 });
		$(this).siblings().animate({ width : '185px' }, { queue: false , duration: 500});  
	});
	
	$(".conSlider-item3").hover(function() {
		$(this).stop().animate({ width: '650px' }, { queue: false , duration: 500 });
		$(this).siblings().animate({ width : '69px' }, { queue: false , duration: 500});  
	},function() {
		$(this).stop().animate({ width: '185px' }, { queue: false , duration: 500 });
		$(this).siblings().animate({ width : '185px' }, { queue: false , duration: 500});  
	});
	
	$(".conSlider-item4").hover(function() {
		$(this).stop().animate({ width: '650px' }, { queue: false , duration: 500 });
		$(this).siblings().animate({ width : '69px' }, { queue: false , duration: 500});  
	},function() {
		$(this).stop().animate({ width: '185px' }, { queue: false , duration: 500 });
		$(this).siblings().animate({ width : '185px' }, { queue: false , duration: 500});  
	});

	$(".conSlider-item5").hover(function() {
		$(this).stop().animate({ width: '650px' }, { queue: false , duration: 500 });
		$(this).siblings().animate({ width : '69px' }, { queue: false , duration: 500});  
	},function() {
		$(this).stop().animate({ width: '185px' }, { queue: false , duration: 500 });
		$(this).siblings().animate({ width : '185px' }, { queue: false , duration: 500});  
	});
	
	$(".conSlider-item-nav a").hover(function() {
		$(this).addClass("conSlide-item-nav-bg").fadeTo("slow",0.5);
		},function() {
		$(this).fadeTo("slow",1).removeClass("conSlide-item-nav-bg");
	});
});