var vPath = location.pathname;
var aSection = vPath.split('/');

$('#primary ul li a').each(function(){
 var aSectionTwo = $(this).attr('href').split("/");

 vElement = 1;

 if (aSection[vElement] == aSectionTwo[vElement]) {
  $(this).addClass('active');
 }
});

$('#views_slideshow_singleframe_teaser_section_1').css('height', '0px');

