$ = jQuery.noConflict();

$(document).ready(function(){

	// Default actions
	$("#flavors a").click(function(e){ e.preventDefault(); });
	$("#distributors a").click(function(e){ e.preventDefault(); }).attr("title", "");
	$("#s").val(__search);
	
	$(".pr_post_center .entry-content").hide();
	$(".pr_post_center h2").click(function(e){
		$(".pr_post_center .entry-content").slideUp().hide();
		$(".entry-content", $(this).parent() ).slideDown().show();
		e.preventDefault();
	});
	
	
	$("#flavors a").mouseover(function(e){
		flavorId = $(this).attr("href");
		$('#echotvslideshow').cycle("pause");

		ind = $("#echotvslideshow img[rel='"+flavorId+"']").attr("indice");

		if(ind != undefined){
			$('#echotvslideshow').cycle((ind-1));  
		}
	});
	
	$("#flavors a").mouseout(function(e){
		$('#echotvslideshow').cycle("resume");
	});

	// Search
	$('#s').focus(function(e) {
		$('#s')
		.css("width", "215px")
		.val('');	
	});

	$('#s').blur(function(e) {
		$('#s')
		.css("width", "100px")
		.val(__search);
	});


});
<!-- end document ready -->



