var prUrl="http://www.nbalma.gr";

$(function() {
	$(".gallery-jc").jCarouselLite({
		vertical: false,
		hoverPause: true,
		visible: 4,
		auto: 5000,
		speed: 1000,
		btnNext: ".prev",
		btnPrev: ".next"
	});
});


$(document).ready(function() {
	$("#contactForm").validationEngine()
});


$(document).ready(function() {
	
	$("div.offer").mouseover(function(){
		$(this).stop().animate({left:"0px"},"slow");
	});
	$("div.offer").mouseout(function(){
		$(this).stop().animate({left:"-540px"},"slow");
	});
	
	
	$("div.alma-promo-close").click(function(){
		$(this).hide();
		$("span.alma-promo").stop().animate({height:"0px"},"medium",function(){
			$("a.alma-promo").hide();
		});
		$.ajax({
			url: prUrl+"/ajax/hidepromo.php",
			type: "GET",
			dataType: "text",
			timeout: 10000,
			cache: false,
			error: function(){
				//alert("Error loading XML document");
			},
			success: function(text){
				//
			}
		});
	});
	
	
});
