jQuery(document).ready(function($){

	$(".hp-service").click(function(){
	     window.location=$(this).find("a").attr("href");
	     return false;
	});
	
	$(".new-single-speaker:first-child").addClass("current");

	$(".new-single-speaker").css("cursor", "pointer");
	
	$(".new-single-speaker").click(function(){
		$(".new-single-speaker").removeClass("current");
		$(this).addClass("current");
		var cursp = $(this).find(".new-speaker-text p").attr("rel");
		$(".one-large-speaker").hide();
		$(cursp).show();
	});

	$(".new-single-speaker a").click(function(){
	});


	$(".page-template-page-landing-php .new-single-speaker").click(function(){
		window.location=$(this).find("a").attr("href");
		return false;
	});

})
