$(document).ready(function(){
	
	$("#navigation .menu li a").each(function(i,o){
		
		if(window.location.href.match(o.href)){
			$(o).parent().attr("id","activeTab")
		}
		
	})
	
	$(".top_slideshow").cycle();
		
})
