$(document).ready(function(){
       
	   
	   
       try{  
	   
	   
	   
	   // jQuery Toggle

	//$(".toggle_container").hide(); //Hide (Collapse) the toggle containers on load

	//Switch the "Open" and "Close" state per click then slide up/down (depending on open/close state)
	$("b.trigger").click(function(){
		$(this).toggleClass("active").next().slideToggle("slow");
		return false; //Prevent the browser jump to the link anchor
	});

       
    $('.featured-outer .clickable').click(function(){
												  links = $(this).find('a.title').attr('href');
												  
												  $(location).attr('href',links );
												   });
       
       }catch(e){
        
       }
       
         });
