//News, Slider Boxes and form slider
$(document).ready(function(){
    //news
	ns_newsticker(".news dd",5000);
	
	//form slider
	$('#formsSlider').hoverAccordion({
		activateitem: '1',
		speed: 'fast',
		keepheight: 'true',
		clickOpt: 'true'
	});
	
	//faq slider
	$('#faqSlider').hoverAccordion({
		activateitem: '1',
		speed: 'fast',
		keepheight: 'false',
		clickOpt: 'false'
	});
	$('#faqSlider').children('li:first').addClass('firstitem');
	$('#faqSlider').children('li:last').addClass('lastitem');
	
	//slider boxes
	lastBlock = $("#a1");
    maxWidth = 400;
    minWidth = 140;	

    $("ul.home-slider li").hover(
      function(){
        $(lastBlock).animate({width: minWidth+"px"}, { queue:false, duration:400 });
	$(this).animate({width: maxWidth+"px"}, { queue:false, duration:400});
	lastBlock = this;
      }
    );
	
	//top slider
	$("#slideTop").hover(
      function () {
        var $topy = $(this);
    	$topy.animate({top: parseInt($topy.css('top'),10) == 0 ? -$topy.outerHeight() : 0});
      }, 
      function () {
        var $topy = $(this);
    	$topy.animate({top: parseInt($topy.css('top'),10) == 0 ? -$topy.outerHeight() : 0});
      }
    );
});

//Case Studies 
$(function()
{
	$('#homeCaseStudies').ContentSlider({
		width : '586px',
		height : '134px',
		speed : 400,
		easing : 'easeOutQuad',
		textResize : false
	});
});
