// JavaScript Document
$(document).ready(function() {
	$('.quickflip-1').quickFlip();
  
	$('#captcha-audio').flash({
		src: 'si/securimage_play.swf?audio=si/securimage_play.php&amp;bgColor1=#fff&amp;bgColor2=#fff&amp;iconColor=#777&amp;borderWidth=1&amp;borderColor=#000', 
		width: 20, 
		height: 20 
	});
	
	$.nyroModalSettings({
		debug: false, // Show the debug in the background
		modal: true, // Esc key or click backgrdound enabling or not
	});
	
	$("#refresh-link").click(function() {
		document.getElementById('captcha').src = 'si/securimage_show.php?sid=' + Math.random();
		$("#refresh-img").blur();
		return false;
	});
	
	$("#submit-btn").click(function() {
		hideflash();
	});

});

function hideflash(){
	$('#captcha-audio').css('visibility','hidden')
};
function showflash(){
	$('#captcha-audio').css('visibility','visible')
};
function resetform(){
	$(':input','#contact')
	.not(':button, :submit, :reset, :hidden')
	.val('')
};
