

jQuery(document).ready(function($){
	

	// activate tabs
	$("#tabs").tabs();
    
    // show more twitter feeds
	$('a.twitter-show-more').click(function() {
		$(".twitter-hide").toggle();
		if($('.twitter-hide').is(':hidden')) {
			$('a.twitter-show-more').text('Show more »');
			$('a.twitter-show-more').hide();
		}
		else {
			$('a.twitter-show-more').text('Show less «');
		}
		return false;
	});
	

	$("tr:odd").addClass("odd");
		
	$('.target').change(function() {
  		window.location = "http://www.pettersolberg.com/html/results/live-stage-times?ID=" + $(".target").val();
	});
	
	$(".page-item-2318 a").attr("href", "http://www.pscollection.no");


}); // document end
