$(document).ready(
function(){

					
					$('ul#Right-Rotator').innerfade({
						speed: 1000,
						timeout: 20000,
						type: 'random',
						containerheight: '320px'
					});
			});

 jQuery(function() {
 var containerRegister = $('div.containerRegister');
		var v = jQuery("#registerform").validate({
		 errorContainer: containerRegister,
  errorLabelContainer: $("ol", containerRegister),
  wrapper: 'li',
  meta: "validate",
				submitHandler: function(form) {
				$.ajaxSetup({dataType: "text"})
				$.post('scripts/register.php',{Name:$('#RegName').val(),Email:$('#RegEmail').val(),Title:$('#RegTitle').val(),Country:$('#RegCountry').val(),rand:Math.random() }, function(datanew) {$('#Register').hide();$('#register_success').empty();$('#register_success').append(datanew);$('#register_success').fadeIn();
        });
   return false;
			}
		});
	});

