		$('.navAbout .sub_menu UL').mouseenter(function() {

			$(this).parent('div').parent('li').children('a').addClass('hover-about');
		}).mouseleave(function(){
			$(this).parent('div').parent('li').children('a').removeClass('hover-about');
		});
		
		$('.navPortfolio .sub_menu UL').mouseenter(function() {

			$(this).parent('div').parent('li').children('a').addClass('hover-portfolio');
		}).mouseleave(function(){
			$(this).parent('div').parent('li').children('a').removeClass('hover-portfolio');
		});
		
		$('.navServices .sub_menu UL').mouseenter(function() {
			$(this).parent('div').parent('li').children('a').addClass('hover-service');
		}).mouseleave(function(){
			$(this).parent('div').parent('li').children('a').removeClass('hover-service');
		});
		
		$(function(){
			$(".tiptip").tipTip({maxWidth: "250px", edgeOffset: 5, defaultPosition: "bottom", attribute: "rev", delay: 200});
		});
		
		$(document).ready(function(){
			$('.boxgrid.captionfull').hover(function(){
				$(".cover", this).stop().animate({top:'0px'},{queue:false,duration:160});
			}, function() {
				$(".cover", this).stop().animate({top:'149px'},{queue:false,duration:160});
			});
		});
