$(document).ready(function(){
	var abuelwafa = new (function(){
		//start coding from here...
		//drop down menu
		$('#menu-top-menu li').hover(function(event){
			$(this).find('ul').first().slideUp().stop(true, true).slideToggle(250).end();
		}, function(event){
			$(this).find('ul').first().slideDown().stop(true, true).slideToggle(150).end();
		});
		//-------------------------------------------
		//testimonials widget
		var testimonialsul = $('#testimonialswidget ul');
		var testimonialsnumber = $('#testimonialswidget ul li').length;
		var targetindex = 0;
		setInterval(function(){
			targetindex++;
			if(targetindex >= testimonialsnumber ){
				targetindex = 0;
			}
			var targetvalue = targetindex * -450;
			testimonialsul.animate({ left: targetvalue }, 2500);
		}, 7500);
	})();
});





