$(
	function() {
		setRollover();
		if ($('a.privacy').length != 0) {
			$('a.privacy').bind('click', function() {window.open($(this).attr('href')); return false;});
		}
	}
);

function setRollover() {
	$('img.rollover').each(
		function() {
			$(this).hover(
				function() {
					$(this).attr('src', $(this).attr('src').replace('.png', '_over.png'));
				},
				function() {
					$(this).attr('src', $(this).attr('src').replace('_over.png', '.png'));
				}
			);
		}
	);
}

function submitForm(param) {
	$.each(param, function(key, val){$('#frm').attr(key).value = val;});
	$('#frm').submit();
}




