/*
Project: Barcamp Azerbaijan
Author: Muradov Sadig (coding&desing)
Author URL: http://labrin.net
*/

//<![CDATA[
$(document).ready(function() {
	// dropdown menu
	$("li.mega").hover(
		function(){ //over
			$(this).addClass("hovering");
			},
		function(){ //out
			$(this).removeClass("hovering");
			}
	);
	
});

// Manshet - content slider
$(function(){
	$('#slider1').anythingSlider({
		startStopped: true, // If autoPlay is on, this can force it to start stopped
		//width: 800,   // Override the default CSS width
		easing: 'easeInOutBack',
		//autoPlayLocked  : true,  // If true, user changing slides will not stop the slideshow
		//resumeDelay     : 10000, // Resume slideshow after user interaction, only if autoplayLocked is true (in milliseconds).
		onSlideComplete : function(slider){ // alert('Welcome to Slide #' + slider.currentPage);
		}
	});
	// design things
});






//]]>

