// JavaScript Document

var $j = jQuery.noConflict();

$j(function() {
    $j('#slider').simpleslider({
        transition : 'slide',
        easing : 'swing',
        direction : 'horizontal',
        speed : 500,
        auto : false,
        interval : 2000,
        hoverPause : true,
        navigation : false,
        buttons : true,
        prevText  : '',
        nextText : '>',
        loop  : true
    });
    
/*    $j('#services-slider').simpleslider({
        transition : 'fade',
        easing : 'swing',
        speed : 1000,
        auto : false,
        interval : 2000,
        hoverPause : true,
        navigation : false,
        buttons : true,
        prevText  : '',
        nextText : 'MORE SERVICES',
        loop  : true
    });    
*/
});

$j(function(){
	$j(".practice-areas li a").hover(
		function() {
		$j(this).children('img').stop().animate({"opacity": "1"}, "fast");
		$j(this).children('p').stop().animate({"opacity": "0"}, "fast").css('visibility','hidden');
	},
	function() {
		$j(this).children('img').stop().animate({"opacity": "0.3"}, "fast");
		$j(this).children('p').stop().animate({"opacity": "1"}, "fast").css('visibility','visible');
		
	});
 
});

