// Clifton Ingram Sport JS - Created by iDIGIT Web Design 
// version 1.0
// May 2009

/*
 * jQuery Easing v1.1 - http://gsgd.co.uk/sandbox/jquery.easing.php
 *
 * Uses the built in easing capabilities added in jQuery 1.1
 * to offer multiple easing options
 *
 * Copyright (c) 2007 George Smith
 * Licensed under the MIT License:
 *   http://www.opensource.org/licenses/mit-license.php
 */
jQuery.easing={easein:function(x,t,b,c,d){return c*(t/=d)*t+b},easeinout:function(x,t,b,c,d){if(t<d/2)return 2*c*t*t/(d*d)+b;var a=t-d/2;return-2*c*a*a/(d*d)+2*c*a/d+c/2+b},easeout:function(x,t,b,c,d){return-c*t*t/(d*d)+2*c*t/d+b},expoin:function(x,t,b,c,d){var a=1;if(c<0){a*=-1;c*=-1}return a*(Math.exp(Math.log(c)/d*t))+b},expoout:function(x,t,b,c,d){var a=1;if(c<0){a*=-1;c*=-1}return a*(-Math.exp(-Math.log(c)/d*(t-d))+c+1)+b},expoinout:function(x,t,b,c,d){var a=1;if(c<0){a*=-1;c*=-1}if(t<d/2)return a*(Math.exp(Math.log(c/2)/(d/2)*t))+b;return a*(-Math.exp(-2*Math.log(c/2)/d*(t-d))+c+1)+b},bouncein:function(x,t,b,c,d){return c-jQuery.easing['bounceout'](x,d-t,0,c,d)+b},bounceout:function(x,t,b,c,d){if((t/=d)<(1/2.75)){return c*(7.5625*t*t)+b}else if(t<(2/2.75)){return c*(7.5625*(t-=(1.5/2.75))*t+.75)+b}else if(t<(2.5/2.75)){return c*(7.5625*(t-=(2.25/2.75))*t+.9375)+b}else{return c*(7.5625*(t-=(2.625/2.75))*t+.984375)+b}},bounceinout:function(x,t,b,c,d){if(t<d/2)return jQuery.easing['bouncein'](x,t*2,0,c,d)*.5+b;return jQuery.easing['bounceout'](x,t*2-d,0,c,d)*.5+c*.5+b},elasin:function(x,t,b,c,d){var s=1.70158;var p=0;var a=c;if(t==0)return b;if((t/=d)==1)return b+c;if(!p)p=d*.3;if(a<Math.abs(c)){a=c;var s=p/4}else var s=p/(2*Math.PI)*Math.asin(c/a);return-(a*Math.pow(2,10*(t-=1))*Math.sin((t*d-s)*(2*Math.PI)/p))+b},elasout:function(x,t,b,c,d){var s=1.70158;var p=0;var a=c;if(t==0)return b;if((t/=d)==1)return b+c;if(!p)p=d*.3;if(a<Math.abs(c)){a=c;var s=p/4}else var s=p/(2*Math.PI)*Math.asin(c/a);return a*Math.pow(2,-10*t)*Math.sin((t*d-s)*(2*Math.PI)/p)+c+b},elasinout:function(x,t,b,c,d){var s=1.70158;var p=0;var a=c;if(t==0)return b;if((t/=d/2)==2)return b+c;if(!p)p=d*(.3*1.5);if(a<Math.abs(c)){a=c;var s=p/4}else var s=p/(2*Math.PI)*Math.asin(c/a);if(t<1)return-.5*(a*Math.pow(2,10*(t-=1))*Math.sin((t*d-s)*(2*Math.PI)/p))+b;return a*Math.pow(2,-10*(t-=1))*Math.sin((t*d-s)*(2*Math.PI)/p)*.5+c+b},backin:function(x,t,b,c,d){var s=1.70158;return c*(t/=d)*t*((s+1)*t-s)+b},backout:function(x,t,b,c,d){var s=1.70158;return c*((t=t/d-1)*t*((s+1)*t+s)+1)+b},backinout:function(x,t,b,c,d){var s=1.70158;if((t/=d/2)<1)return c/2*(t*t*(((s*=(1.525))+1)*t-s))+b;return c/2*((t-=2)*t*(((s*=(1.525))+1)*t+s)+2)+b},linear:function(x,t,b,c,d){return c*t/d+b}};
(function($){$.fn.lavaLamp=function(o){o=$.extend({fx:"linear",speed:500,click:function(){}},o||{});return this.each(function(){var b=$(this),noop=function(){},$back=$('<li class="back"><div class="left"></div></li>').appendTo(b),$li=$("li",this),curr=$("li.current",this)[0]||$($li[0]).addClass("current")[0];$li.not(".back").hover(function(){move(this)},noop);$(this).hover(noop,function(){move(curr)});$li.click(function(e){setCurr(this);return o.click.apply(this,[e,this])});setCurr(curr);function setCurr(a){$back.css({"left":a.offsetLeft+"px","width":a.offsetWidth+"px"});curr=a};function move(a){$back.each(function(){$(this).dequeue()}).animate({width:a.offsetWidth,left:a.offsetLeft},o.speed,o.fx)}})}})(jQuery);

/* =========================================================

// jquery.innerfade.js

// Datum: 2008-02-14
// Firma: Medienfreunde Hofmann & Baldes GbR
// Author: Torsten Baldes
// Mail: t.baldes@medienfreunde.com
// Web: http://medienfreunde.com

// based on the work of Matt Oakes http://portfolio.gizone.co.uk/applications/slideshow/
// and Ralf S. Engelschall http://trainofthoughts.org/

 *
 *  <ul id="news"> 
 *      <li>content 1</li>
 *      <li>content 2</li>
 *      <li>content 3</li>
 *  </ul>
 *  
 *  $('#news').innerfade({ 
 *	  animationtype: Type of animation 'fade' or 'slide' (Default: 'fade'), 
 *	  speed: Fading-/Sliding-Speed in milliseconds or keywords (slow, normal or fast) (Default: 'normal'), 
 *	  timeout: Time between the fades in milliseconds (Default: '2000'), 
 *	  type: Type of slideshow: 'sequence', 'random' or 'random_start' (Default: 'sequence'), 
 * 		containerheight: Height of the containing element in any css-height-value (Default: 'auto'),
 *	  runningclass: CSS-Class which the container get’s applied (Default: 'innerfade'),
 *	  children: optional children selector (Default: null)
 *  }); 
 *

// ========================================================= */


(function($) {

    $.fn.innerfade = function(options) {
        return this.each(function() {   
            $.innerfade(this, options);
        });
    };

    $.innerfade = function(container, options) {
        var settings = {
        		'animationtype':    'fade',
            'speed':            'normal',
            'type':             'sequence',
            'timeout':          2000,
            'containerheight':  'auto',
            'runningclass':     'innerfade',
            'children':         null
        };
        if (options)
            $.extend(settings, options);
        if (settings.children === null)
            var elements = $(container).children();
        else
            var elements = $(container).children(settings.children);
        if (elements.length > 1) {
            $(container).css('position', 'relative').css('height', settings.containerheight).addClass(settings.runningclass);
            for (var i = 0; i < elements.length; i++) {
                $(elements[i]).css('z-index', String(elements.length-i)).css('position', 'absolute').hide();
            };
            if (settings.type == "sequence") {
                setTimeout(function() {
                    $.innerfade.next(elements, settings, 1, 0);
                }, settings.timeout);
                $(elements[0]).show();
            } else if (settings.type == "random") {
            		var last = Math.floor ( Math.random () * ( elements.length ) );
                setTimeout(function() {
                    do { 
												current = Math.floor ( Math.random ( ) * ( elements.length ) );
										} while (last == current );             
										$.innerfade.next(elements, settings, current, last);
                }, settings.timeout);
                $(elements[last]).show();
						} else if ( settings.type == 'random_start' ) {
								settings.type = 'sequence';
								var current = Math.floor ( Math.random () * ( elements.length ) );
								setTimeout(function(){
									$.innerfade.next(elements, settings, (current + 1) %  elements.length, current);
								}, settings.timeout);
								$(elements[current]).show();
						}	else {
							alert('Innerfade-Type must either be \'sequence\', \'random\' or \'random_start\'');
						}
				}
    };

    $.innerfade.next = function(elements, settings, current, last) {
        if (settings.animationtype == 'slide') {
            $(elements[last]).slideUp(settings.speed);
            $(elements[current]).slideDown(settings.speed);
        } else if (settings.animationtype == 'fade') {
            $(elements[last]).fadeOut(settings.speed);
            $(elements[current]).fadeIn(settings.speed, function() {
							removeFilter($(this)[0]);
						});
        } else
            alert('Innerfade-animationtype must either be \'slide\' or \'fade\'');
        if (settings.type == "sequence") {
            if ((current + 1) < elements.length) {
                current = current + 1;
                last = current - 1;
            } else {
                current = 0;
                last = elements.length - 1;
            }
        } else if (settings.type == "random") {
            last = current;
            while (current == last)
                current = Math.floor(Math.random() * elements.length);
        } else
            alert('Innerfade-Type must either be \'sequence\', \'random\' or \'random_start\'');
        setTimeout((function() {
            $.innerfade.next(elements, settings, current, last);
        }), settings.timeout);
    };

})(jQuery);

// **** remove Opacity-Filter in ie ****
function removeFilter(element) {
	if(element.style.removeAttribute){
		element.style.removeAttribute('filter');
	}
}


if(typeof deconcept=="undefined"){var deconcept={};}if(typeof deconcept.util=="undefined"){deconcept.util={};}if(typeof deconcept.SWFObjectUtil=="undefined"){deconcept.SWFObjectUtil={};}deconcept.SWFObject=function(_1,id,w,h,_5,c,_7,_8,_9,_a){if(!document.getElementById){return;}this.DETECT_KEY=_a?_a:"detectflash";this.skipDetect=deconcept.util.getRequestParameter(this.DETECT_KEY);this.params={};this.variables={};this.attributes=[];if(_1){this.setAttribute("swf",_1);}if(id){this.setAttribute("id",id);}if(w){this.setAttribute("width",w);}if(h){this.setAttribute("height",h);}if(_5){this.setAttribute("version",new deconcept.PlayerVersion(_5.toString().split(".")));}this.installedVer=deconcept.SWFObjectUtil.getPlayerVersion();if(!window.opera&&document.all&&this.installedVer.major>7){if(!deconcept.unloadSet){deconcept.SWFObjectUtil.prepUnload=function(){__flash_unloadHandler=function(){};__flash_savedUnloadHandler=function(){};window.attachEvent("onunload",deconcept.SWFObjectUtil.cleanupSWFs);};window.attachEvent("onbeforeunload",deconcept.SWFObjectUtil.prepUnload);deconcept.unloadSet=true;}}if(c){this.addParam("bgcolor",c);}var q=_7?_7:"high";this.addParam("quality",q);this.setAttribute("useExpressInstall",false);this.setAttribute("doExpressInstall",false);var _c=(_8)?_8:window.location;this.setAttribute("xiRedirectUrl",_c);this.setAttribute("redirectUrl","");if(_9){this.setAttribute("redirectUrl",_9);}};deconcept.SWFObject.prototype={useExpressInstall:function(_d){this.xiSWFPath=!_d?"expressinstall.swf":_d;this.setAttribute("useExpressInstall",true);},setAttribute:function(_e,_f){this.attributes[_e]=_f;},getAttribute:function(_10){return this.attributes[_10]||"";},addParam:function(_11,_12){this.params[_11]=_12;},getParams:function(){return this.params;},addVariable:function(_13,_14){this.variables[_13]=_14;},getVariable:function(_15){return this.variables[_15]||"";},getVariables:function(){return this.variables;},getVariablePairs:function(){var _16=[];var key;var _18=this.getVariables();for(key in _18){_16[_16.length]=key+"="+_18[key];}return _16;},getSWFHTML:function(){var _19="";if(navigator.plugins&&navigator.mimeTypes&&navigator.mimeTypes.length){if(this.getAttribute("doExpressInstall")){this.addVariable("MMplayerType","PlugIn");this.setAttribute("swf",this.xiSWFPath);}_19="<embed type=\"application/x-shockwave-flash\" src=\""+this.getAttribute("swf")+"\" width=\""+this.getAttribute("width")+"\" height=\""+this.getAttribute("height")+"\" style=\""+(this.getAttribute("style")||"")+"\"";_19+=" id=\""+this.getAttribute("id")+"\" name=\""+this.getAttribute("id")+"\" ";var _1a=this.getParams();for(var key in _1a){_19+=[key]+"=\""+_1a[key]+"\" ";}var _1c=this.getVariablePairs().join("&");if(_1c.length>0){_19+="flashvars=\""+_1c+"\"";}_19+="/>";}else{if(this.getAttribute("doExpressInstall")){this.addVariable("MMplayerType","ActiveX");this.setAttribute("swf",this.xiSWFPath);}_19="<object id=\""+this.getAttribute("id")+"\" classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" width=\""+this.getAttribute("width")+"\" height=\""+this.getAttribute("height")+"\" style=\""+(this.getAttribute("style")||"")+"\">";_19+="<param name=\"movie\" value=\""+this.getAttribute("swf")+"\" />";var _1d=this.getParams();for(var key in _1d){_19+="<param name=\""+key+"\" value=\""+_1d[key]+"\" />";}var _1f=this.getVariablePairs().join("&");if(_1f.length>0){_19+="<param name=\"flashvars\" value=\""+_1f+"\" />";}_19+="</object>";}return _19;},write:function(_20){if(this.getAttribute("useExpressInstall")){var _21=new deconcept.PlayerVersion([6,0,65]);if(this.installedVer.versionIsValid(_21)&&!this.installedVer.versionIsValid(this.getAttribute("version"))){this.setAttribute("doExpressInstall",true);this.addVariable("MMredirectURL",escape(this.getAttribute("xiRedirectUrl")));document.title=document.title.slice(0,47)+" - Flash Player Installation";this.addVariable("MMdoctitle",document.title);}}if(this.skipDetect||this.getAttribute("doExpressInstall")||this.installedVer.versionIsValid(this.getAttribute("version"))){var n=(typeof _20=="string")?document.getElementById(_20):_20;n.innerHTML=this.getSWFHTML();return true;}else{if(this.getAttribute("redirectUrl")!=""){document.location.replace(this.getAttribute("redirectUrl"));}}return false;}};deconcept.SWFObjectUtil.getPlayerVersion=function(){var _23=new deconcept.PlayerVersion([0,0,0]);if(navigator.plugins&&navigator.mimeTypes.length){var x=navigator.plugins["Shockwave Flash"];if(x&&x.description){_23=new deconcept.PlayerVersion(x.description.replace(/([a-zA-Z]|\s)+/,"").replace(/(\s+r|\s+b[0-9]+)/,".").split("."));}}else{if(navigator.userAgent&&navigator.userAgent.indexOf("Windows CE")>=0){var axo=1;var _26=3;while(axo){try{_26++;axo=new ActiveXObject("ShockwaveFlash.ShockwaveFlash."+_26);_23=new deconcept.PlayerVersion([_26,0,0]);}catch(e){axo=null;}}}else{try{var axo=new ActiveXObject("ShockwaveFlash.ShockwaveFlash.7");}catch(e){try{var axo=new ActiveXObject("ShockwaveFlash.ShockwaveFlash.6");_23=new deconcept.PlayerVersion([6,0,21]);axo.AllowScriptAccess="always";}catch(e){if(_23.major==6){return _23;}}try{axo=new ActiveXObject("ShockwaveFlash.ShockwaveFlash");}catch(e){}}if(axo!=null){_23=new deconcept.PlayerVersion(axo.GetVariable("$version").split(" ")[1].split(","));}}}return _23;};deconcept.PlayerVersion=function(_29){this.major=_29[0]!=null?parseInt(_29[0]):0;this.minor=_29[1]!=null?parseInt(_29[1]):0;this.rev=_29[2]!=null?parseInt(_29[2]):0;};deconcept.PlayerVersion.prototype.versionIsValid=function(fv){if(this.major<fv.major){return false;}if(this.major>fv.major){return true;}if(this.minor<fv.minor){return false;}if(this.minor>fv.minor){return true;}if(this.rev<fv.rev){return false;}return true;};deconcept.util={getRequestParameter:function(_2b){var q=document.location.search||document.location.hash;if(_2b==null){return q;}if(q){var _2d=q.substring(1).split("&");for(var i=0;i<_2d.length;i++){if(_2d[i].substring(0,_2d[i].indexOf("="))==_2b){return _2d[i].substring((_2d[i].indexOf("=")+1));}}}return "";}};deconcept.SWFObjectUtil.cleanupSWFs=function(){var _2f=document.getElementsByTagName("OBJECT");for(var i=_2f.length-1;i>=0;i--){_2f[i].style.display="none";for(var x in _2f[i]){if(typeof _2f[i][x]=="function"){_2f[i][x]=function(){};}}}};if(!document.getElementById&&document.all){document.getElementById=function(id){return document.all[id];};}var getQueryParamValue=deconcept.util.getRequestParameter;var FlashObject=deconcept.SWFObject;var SWFObject=deconcept.SWFObject;

jQuery(document).ready(function(jQuery){

jQuery("#navigation").lavaLamp({
fx: "backout",
speed: 550
});

jQuery('#client-testimonials').innerfade({ 
speed: 'fast', 
timeout: 15000, 
type: 'sequence', 
containerheight: '300px' 
}); 


jQuery("..testimonial-logo").css({background: '#ffffff', display: 'inline'});
jQuery(".profile").hide();
jQuery("#profile-1").fadeIn(600);
jQuery("#featured-image-title-bg, #team-member-2, #team-member-3, #team-member-4, #team-member-5, #team-member-6, #team-member-7, #team-member-8, #team-member-9, #team-member-10").css({opacity : 0.5});

jQuery("#team-member-1").hover(function(){
jQuery("#profile-1").fadeIn(600);
jQuery("#profile-2, #profile-3, #profile-4, #profile-5, #profile-6, #profile-7, #profile-8, #profile-9, #profile-10").hide();
jQuery("#team-member-1").css({opacity: 1});
jQuery("#team-member-2, #team-member-3, #team-member-4, #team-member-5, #team-member-6, #team-member-7, #team-member-8, #team-member-9, #team-member-10").css({opacity: 0.5});
},function(){ 
}); //  .hover

jQuery("#team-member-2").hover(function(){
jQuery("#profile-2").fadeIn(600);
jQuery("#profile-1, #profile-3, #profile-4, #profile-5, #profile-6, #profile-7, #profile-8, #profile-9, #profile-10").hide();
jQuery("#team-member-2").css({opacity: 1});
jQuery("#team-member-1, #team-member-3, #team-member-4, #team-member-5, #team-member-6, #team-member-7, #team-member-8, #team-member-9, #team-member-10").css({opacity: 0.5});
},function(){ 

}); //  .hover

jQuery("#team-member-3").hover(function(){
jQuery("#profile-3").fadeIn(600);
jQuery("#profile-1, #profile-2, #profile-4, #profile-5, #profile-6, #profile-7, #profile-8, #profile-9, #profile-10").hide();
jQuery("#team-member-3").css({opacity: 1});
jQuery("#team-member-1, #team-member-2, #team-member-4, #team-member-5, #team-member-6, #team-member-7, #team-member-8, #team-member-9, #team-member-10").css({opacity: 0.5});
},function(){ 

}); //  .hover

jQuery("#team-member-4").hover(function(){
jQuery("#profile-4").fadeIn(600);
jQuery("#profile-1, #profile-2, #profile-3, #profile-5, #profile-6, #profile-7, #profile-8, #profile-9, #profile-10").hide();
jQuery("#team-member-4").css({opacity: 1});
jQuery("#team-member-1, #team-member-2, #team-member-3, #team-member-5, #team-member-6, #team-member-7, #team-member-8, #team-member-9, #team-member-10").css({opacity: 0.5});
},function(){ 

}); //  .hover

jQuery("#team-member-5").hover(function(){
jQuery("#profile-5").fadeIn(600);
jQuery("#profile-1, #profile-2, #profile-3, #profile-4, #profile-6, #profile-7, #profile-8, #profile-9, #profile-10").hide();
jQuery("#team-member-5").css({opacity: 1});
jQuery("#team-member-1, #team-member-2, #team-member-3, #team-member-4, #team-member-6, #team-member-7, #team-member-8, #team-member-9, #team-member-10").css({opacity: 0.5});
},function(){ 

}); //  .hover

jQuery("#team-member-6").hover(function(){
jQuery("#profile-6").fadeIn(600);
jQuery("#profile-1, #profile-2, #profile-3, #profile-4, #profile-5, #profile-7, #profile-8, #profile-9, #profile-10").hide();
jQuery("#team-member-6").css({opacity: 1});
jQuery("#team-member-1, #team-member-2, #team-member-3, #team-member-4, #team-member-5,  #team-member-7, #team-member-8, #team-member-9, #team-member-10").css({opacity: 0.5});
},function(){ 

}); //  .hover

jQuery("#team-member-7").hover(function(){
jQuery("#profile-7").fadeIn(600);
jQuery("#profile-1, #profile-2, #profile-3, #profile-4, #profile-5, #profile-6, #profile-8, #profile-9, #profile-10").hide();
jQuery("#team-member-7").css({opacity: 1});
jQuery("#team-member-1, #team-member-2, #team-member-3, #team-member-4, #team-member-5, #team-member-6, #team-member-8, #team-member-9, #team-member-10").css({opacity: 0.5});
},function(){ 

}); //  .hover

jQuery("#team-member-8").hover(function(){
jQuery("#profile-8").fadeIn(600);
jQuery("#profile-1, #profile-2, #profile-3, #profile-4, #profile-5, #profile-6, #profile-7, #profile-9, #profile-10").hide();
jQuery("#team-member-8").css({opacity: 1});
jQuery("#team-member-1, #team-member-2, #team-member-3, #team-member-4, #team-member-5, #team-member-6, #team-member-7, #team-member-9, #team-member-10").css({opacity: 0.5});
},function(){ 

}); //  .hover

jQuery("#team-member-9").hover(function(){
jQuery("#profile-9").fadeIn(600);
jQuery("#profile-1, #profile-2, #profile-3, #profile-4, #profile-5, #profile-6, #profile-7, #profile-8, #profile-10").hide();
jQuery("#team-member-9").css({opacity: 1});
jQuery("#team-member-1, #team-member-2, #team-member-3, #team-member-4, #team-member-5, #team-member-6, #team-member-7, #team-member-8, #team-member-10").css({opacity: 0.5});
},function(){ 

}); //  .hover

jQuery("#team-member-10").hover(function(){
jQuery("#profile-10").fadeIn(600);
jQuery("#profile-1, #profile-2, #profile-3, #profile-4, #profile-5, #profile-6, #profile-7, #profile-8, #profile-9").hide();
jQuery("#team-member-10").css({opacity: 1});
jQuery("#team-member-1, #team-member-2, #team-member-3, #team-member-4, #team-member-5, #team-member-6, #team-member-7, #team-member-8, #team-member-9").css({opacity: 0.5});
},function(){ 

}); //  .hover

jQuery("#sports-law-news").hover(function(){
jQuery("#twitter-icon").stop().animate({top:'-6'+'px'}, 200).animate({top:'-3'+'px'}, 150).animate({top:'-6'+'px'}, 100);
jQuery("#twitter-icon-shadow img").stop().animate({width:'38'+'px', marginLeft:'3'+'px', opacity : 0.75}, 450);
},function(){ 
jQuery("#twitter-icon").stop().animate({top:'0'+'px'}, 150).animate({top:'-3'+'px'}, 75).animate({top:'0'+'px'}, 75);
jQuery("#twitter-icon-shadow img").stop().animate({width:'44'+'px', marginLeft:'0'+'px', opacity : 1}, 450);
}); //  .hover

jQuery("#featured").hover(function(){
jQuery("#featured-icon").stop().animate({top:'-6'+'px'}, 200).animate({top:'-3'+'px'}, 150).animate({top:'-6'+'px'}, 100);
jQuery("#featured-icon-shadow img").stop().animate({width:'38'+'px', marginLeft:'3'+'px', opacity : 0.75}, 450);
},function(){ 
jQuery("#featured-icon").stop().animate({top:'0'+'px'}, 150).animate({top:'-3'+'px'}, 75).animate({top:'0'+'px'}, 75);
jQuery("#featured-icon-shadow img").stop().animate({width:'44'+'px', marginLeft:'0'+'px', opacity : 1}, 450);
}); //  .hover

jQuery("#news").hover(function(){
jQuery("#recent-news-icon").stop().animate({top:'-6'+'px'}, 200).animate({top:'-3'+'px'}, 150).animate({top:'-6'+'px'}, 100);
jQuery("#news-icon-shadow img").stop().animate({width:'38'+'px', marginLeft:'3'+'px', opacity : 0.75}, 450);
},function(){ 
jQuery("#recent-news-icon").stop().animate({top:'0'+'px'}, 150).animate({top:'-3'+'px'}, 75).animate({top:'0'+'px'}, 75);
jQuery("#news-icon-shadow img").stop().animate({width:'44'+'px', marginLeft:'0'+'px', opacity : 1}, 450);
}); //  .hover

jQuery("#testimonials").hover(function(){
jQuery("#clients-icon").stop().animate({top:'-6'+'px'}, 200).animate({top:'-3'+'px'}, 150).animate({top:'-6'+'px'}, 100);
jQuery("#clients-icon-shadow img").stop().animate({width:'38'+'px', marginLeft:'3'+'px', opacity : 0.75}, 450);
},function(){ 
jQuery("#clients-icon").stop().animate({top:'0'+'px'}, 150).animate({top:'-3'+'px'}, 75).animate({top:'0'+'px'}, 75);
jQuery("#clients-icon-shadow img").stop().animate({width:'44'+'px', marginLeft:'0'+'px', opacity : 1}, 450);
}); //  .hover

jQuery("#featured-image").hover(function(){
jQuery("#featured-image-title-bg").css({backgroundColor : '#288a20', opacity : 1});
},function(){ 
jQuery("#featured-image-title-bg").css({backgroundColor : '#000000', opacity : 0.5});
}); //  .hover

});