function startScroller(height, width){
  $(".container").wtScroller({
					num_display:5,
					slide_width:width,
					slide_height:height,
					slide_margin:10,
					button_width:35,
					ctrl_height:25,
					margin:10,
					auto_scroll:true,
					delay:4000,
					scroll_speed:1000,
					easing:"",
					auto_scale:false,
					move_one:false,
					ctrl_type:"scrollbar",
					display_buttons:false,
					display_caption:false,
					mouseover_caption:false,
					caption_align:"bottom",
					caption_position:"inside",
					cont_nav:true,
					shuffle:false
				});
}

function goNav(){
	var url = window.location.pathname.split('/');
    var parent = url[1];
    var child = url[2];
    $('#nav_side > li').hide();

    if (parent != ""){

    var $parent = $('#nav_side li').find("a.link[href*='" + parent + "']").last();
    $child = $parent.parent(); //alert($subnav.html());
    $child.show();

        $topNav = $('#nav_main li').find("a[href*='" + parent + "']").addClass('active');

        if(child != ""){
            $child = $child.find("a[href*='" + child + "']");
            $child.addClass('active');
        } else {
            $child = $child.find("a[href*='" + parent + "']").first();
            $child.addClass('active');
        }
    }
}




$(document).ready(function(){
    goNav();
    $("#subscribe").colorbox({iframe:true, innerWidth:985, innerHeight:444, top: 0, scrolling: false});
    $('.colorbox').colorbox();
    $('img.size-thumbnail').parent().colorbox();

})
