// Thickbox Function Call ------------------------------------------------------------------------------------------------------------
function thickbox(title, url, width, height, type, is_modal)
{
	tb_show(title, ((type == "inline")?'#TB_inline?':(url + ((url.indexOf('?') != -1)?"&":"?"))) + 'KeepThis=true' + ((type == "iframe")?'&TB_iframe=true':'') + '&height=' + height + '&width=' + width + ((type == "inline")?'&inlineId=' + url:'') + '&modal=' + ((is_modal)?'true':'false'), false); 
}
// -----------------------------------------------------------------------------------------------------------------------------------

var dest 	= '';
var title 	= '';

$(document).ready(function() {

	$('#newsletter').click(function(event) {
		event.preventDefault();
		thickbox('Join the Petition', 'petition.html', 400, 190, "iframe", false);
	});
	
});
