$(document).ready(function(){
	$('#navSub a').not('.active').hover(
		function(){
			$(this).stop().animate({borderWidth: "5px"}, 110);
		}, function() {
			$(this).stop().animate({borderWidth: "0px"}, 200);
	});	
	$('.info a').hover(
		function(){
			$(this).stop().animate({backgroundColor: "#aaaaaa"}, 400);
		}, function() {
			$(this).stop().animate({backgroundColor: "#dddddd"}, 500);
	});
	$('#about #products li a').hover(
		function(){
			$(this).stop().animate({paddingLeft: "20px"}, 400);
		}, function() {
			$(this).stop().animate({paddingLeft: "12px"}, 500);
	});
	$('.info a').lightBox();
});