$(document).ready(function(){
	
	// show credits in overlay
	$("body").append("<div id='credits' class='simple_overlay'><a href='http://www.bofco.com' target='_blank'><img src='img/site-credits.gif' alt='This site made with love by bofco.com' border='0' /></a></div>");
	$("a#credits-link").overlay();
	
	// use buttons to toggle subsequent paragraphs
	$("a.hidebelow").toggle(function(){
		$(this).parent().next("p").slideDown("fast");
	},function(){
		$(this).parent().next("p").slideUp("fast");
	});
	
	// use <dt> elements to show/hide subsequent definitions ( <dd> elements )
	$("dt.hidebelow").each(function(){
		$(this).append("<span></span>");
		$(this).next("dd").hide();							
	});
	$("dt.hidebelow").toggle(function(){
		$(this).addClass("active");
		$(this).next("dd").slideDown("fast");
	},function(){
		$(this).removeClass("active");
		$(this).next("dd").slideUp("fast");
	});
	
});

var domainroot="www.nationalfarmlife.com";
function Gsitesearch(curobj){
	curobj.q.value="site:"+domainroot+" "+curobj.qfront.value
}
