$(document).ready(function(){
	$("table.top-menus tr td div a").each(function(){
		var url = window.location.href;
		var get = url.substr(url.lastIndexOf('/') + 1);
		var hrefs  = $(this).attr("href").substr($(this).attr("href").lastIndexOf('/') + 1);
		var clas = $(this).parent("div").attr("class");
		if(hrefs == get){
			$(this).parent("div").attr("class", clas + "_over");
		}
	});

$("div#rands").cycle({
		fx:      'fade', 
		speed:    2500, 
		timeout:  5000
	});

});
