//<!--
var base_url = 'http://thehealthyhomechallenge.com/';

$(document).ready( function()
{
	// Print page and record analytics hit
	$('.print_click').click(function(event)
	{
		event.preventDefault();
		event.stopImmediatePropagation();
		
		record_page_hit( $(this).attr('rel') );
		window.print();
		
		return false;
	});
	
	// Print page and record analytics hit
	$('.analytics_click').click(function(event)
	{
		record_page_hit( $(this).attr('rel') );
		return true;
	});
	
});

/** 
* 
*/
function record_page_hit( page )
{
	if ( page.length > 0 )
	{
		// Change iframe src to make a faux page hit with some relevance
		$('#iframe_analytics').attr('src', base_url +'analytics.html?'+ page);
	}
}
//-->