
//-----------------------------
// $(document).ready() 
//-----------------------------
$(document).ready(function() {
	$('img[alt]:not([title])').each( function() {
		$(this).attr('title', $(this).attr('alt'));
	});
	$('img[title]:not([alt])').each( function() {
		$(this).attr('alt', $(this).attr('title'));
	});

    $('a.email').nospam({replaceText:true});
        
});

function getCheckedValue(myOption) {
	myValue = $("input[name='"+myOption+"']:checked").val();
	if (myValue == undefined) {
		return "";	
	} else {
		return myValue;
	}
}

		
