$(document).ready(function($){
	$('#mega-3').dcVerticalMegaMenu({
		rowItems: '3',
		speed: 'slow',
		effect: 'fade',
		direction: 'left'
	});
});


$(function(){
	$('div#buttonContainer > .search > li').hover(function() {
		$(this).css('cursor','pointer');
	  	var btnclass = '.'+$(this).attr('class');
		$(btnclass).stop().animate({opacity:0},'slow');
	},function(){
	  	var btnclass = '.'+$(this).attr('class');
		$(btnclass).stop().animate({opacity:1},'slow');	
	});
});

$(function(){
	$('ul.mega-menu > li.solutionBtn_on').hover(function() {
		$(this).css('cursor','pointer');
		$('ul.mega-menu > li > img.solution').stop().animate({opacity:0},'slow');
		$('ul.mega-menu > li.solutionBtn_on > div.sub-container').css({
		'top': '-53px',
		'left': '124px',
		'width': '470px'
});
	},function(){
		$('ul.mega-menu > li > img').stop().animate({opacity:1},'slow');
	});
});
$(function(){
	$('ul.mega-menu > li.originalBtn_on').hover(function() {
		$(this).css('cursor','pointer');
		$('ul.mega-menu > li > img.original').stop().animate({opacity:0},'slow');
		$('ul.mega-menu > li.originalBtn_on > div.sub-container').css({
	'top': '-80px',
	'left': '124px'
});
	},function(){
		$('ul.mega-menu > li > img').stop().animate({opacity:1},'slow');
	});
});
$(function(){
	$('ul.mega-menu > li.othersBtn_on').hover(function() {
		$(this).css('cursor','pointer');
		$('ul.mega-menu > li > img.others').stop().animate({opacity:0},'slow');
		$('ul.mega-menu > li.othersBtn_on > div.sub-container').css({
			'top': '-108px',
			'left': '124px',
			'width': '320px'
		});
	},function(){
		$('ul.mega-menu > li > img').stop().animate({opacity:1},'slow');
	});
});
