

$(function() {
    $(".adv_pro_content").jCarouselLite({
        btnNext: ".next",
        btnPrev: ".prev"
    });
});

$(document).ready(function() {
  $("#our_portfolio").hide();
});

$(document).ready(function() {
  $("#portfolio_button").click(
	
	function() {
		
		$("#our_portfolio").toggle("slow");
		
		 $("#portfolio_button").toggleClass("hide_portfolio");
		
	}
	
	
	
	);

});




 $(function(){
   $(".haccordion").haccordion();
  });
  
 
$(document).ready(function(){	
	$("#slider_content").easySlider();
});

 $(document).ready(function(){	
	$("a","#"+options.prevId).fadeIn();
});

 $(document).ready(function(){	
	$("#our_portfolio").fadeIn();
});

//Find all link elements and add an onfocus attribute and value
function hideFocusBorders(){
var theahrefs = document.getElementsByTagName("a");
if (!theahrefs){return;}
for(var x=0;x!=theahrefs.length;x++){
theahrefs[x].onfocus = function stopLinkFocus(){this.hideFocus=true;};
}
}