<!-- //////// Background Animation ////////  -->
jQuery.fn.animateme = function() {
	for (i=1; i<2000; i++) {
		this.animate({ backgroundPosition: "-" + i * 10 + "px" }, { "duration": "normal", "easing": "linear" } );
	}
	return this;
};

<!-- //////// Email Me Panel Animation ////////  -->
$(document).ready(function(){
	$(".emailme").click(function(){
		$(".panel").toggle("fast");
		$(this).toggleClass("active");
		return false;
	});
});

	
<!-- //////// Contact Form ////////  -->
/* <![CDATA[ */
$(document).ready(function(){ // sends the data filled in the contact form to the php file and shows a message
	$("#contact-form").submit(function(){
		var str = $(this).serialize();
		$.ajax({
		   type: "POST",
		   url: "/templates/mobilboard/ajaxcalls/email.php",
		   data: str,
		   success: function(msg)
		   {
				$("#formstatus").ajaxComplete(function(event, request, settings){
					if(msg == 'OK'){ // Message Sent? Show the 'Thank You' message and hide the form
						result = '<div class="formstatusok">Mesajınız gönderildi. Teşekkürler!</div>';
						$("#fields").hide();
					}
					else{
						result = msg;
					}
					$(this).html(result);
				});
			}
		 });
		return false;
	});
});
/* ]]> */
