function init ()
{
	$('a#ico-print').click(function(){window.print();return false;});
	$('div.cols5050 img').hover( function (){ $(this).css('border', '1px solid #000030'); }, function(){ $(this).css('border', ''); } );
}

function set_cpage (index)
{
	index = parseInt(index);
	index = isNaN(index) ? 0 : index;
	$('#nav li:eq('+index+')').addClass('active').show('slow');
}

function get_capture ()
{
	$.post('/app/get_code/', { 'sid':'404' }, function( resp ){ $('#capture').html('<input type="text" name="secure_code" id="verify_secure" />&nbsp;'+resp+''); } , 'html' );
	//$('#capture').load('/app/get_code/');

}
