/*
 * Copyright (c) 2011 Panagopoulos Stathis
 * WEB SYSTEMS
 *
 * @version 1.0
 */
 
var isiPad = navigator.userAgent.match(/iPad/i) != null;
var isiPhone = navigator.userAgent.match(/iPhone/i) != null;

if(isiPad==''){

	if(isiPhone==''){	 
	
$(document).ready(function() {	
		
	$().UItoTop({ easingType: 'easeOutQuart' });
	
	$('nav a, a.up').click(function(e){										  	
		$.scrollTo( this.hash || 0, 1500);
		e.preventDefault();
	});	
				
});

	}
}

Cufon.replace('p,h3,#more', { fontFamily: 'SKAvantPolUni_W' });

$(function() {
	$('.load_more').live("click",function() {
		var last_msg_id = $(this).attr("id");
		if(last_msg_id!='end'){
			$.ajax({
					type: "POST",
					url: "more-websites.php",
					data: "lastmsg="+ last_msg_id, 
					beforeSend:  function() {
						$('a.load_more').html('<div id="loader"><img src="images/_site/loading.gif" /></div>');
  					},
					success: function(html){
    					$("#more").remove();
						$("#more-websites").append(html);
					}
			});  
		}
	return false;
	});
});
