var $jq = jQuery.noConflict();
$jq(document).ready(function(){
goToTagPage('http://www.eatrael.com');
//alert('here');
expandContent();
$jq('#s').val('search');
$jq('#s').click(function(){
	$jq(this).val('');
	});
});

function expandContent(){
	$jq('.expand').click(function(){
		var ids = $jq(this).attr('title');
		///THIS ONE KILLS THE EXCERPT
		//$jq('#excerptContent_'+ids).fadeOut(200);
		$jq('#fullContent_'+ids).toggle();
	});
}

function goToTagPage(address){
	$jq('#header').click(function(){
		window.location.assign(address);
	});
}