$(document).ready(function(){	
	$("#slider").easySlider({
		auto:true,
		continuous:true,
		pause:4000,
		prevId :'prevBtn',
		prevText: '',
		nextId :'nextBtn',
		nextText: '',
		speed:600
	});
	
	$("#rssbtn").click(function(){
		$("#rss").fadeIn("normal");
	});
	$("#rssbtn_close").click(function(){
		$("#rss").fadeOut("slow");
	});

//Designer comparison


	$(".td_Gen").hide();
	$(".td_SEO").hide();
	$('.td_ScoreGen').toggle(function() {
		$('.td_Gen').show();
	},function() {
		$('.td_Gen').hide();
	})
	$('.td_ScoreSEO').toggle(function() {
		$('.td_SEO').show();
	},function() {
		$('.td_SEO').hide();
	})

	$(".tbl_comparison tr:nth-child(odd)").addClass("tbl_comparison_odd");
	$(".top10box tr:nth-child(2n)").addClass("top10box_odd");
	
//	alert('hi');
	//$("#tabs").tabs({event: 'mouseover'});
	$("#tabs").tabs();

});

function addBookmark(url, title) {
	if (window.sidebar) { // firefox
		window.sidebar.addPanel(title, url,"");
	} else if( document.all ) { //MSIE
		window.external.AddFavorite( url, title);
	} else {
		alert("Sorry, your browser doesn't support this");
	}
}