$(document).ready(function () {
	$("ul#mnav > li.dd").hover(function(){
		 
		 $(this).toggleClass('active');
		 $(this).find('ul.snav').stop().animate({ height:'show' }, {queue: false, complete: function(){ $(this).css({ height: 'auto'}); }});
		
	}, function(){
		
		$(this).toggleClass('active');
		$(this).find('ul.snav').stop().animate({ height:'hide' }, {queue: false, complete: function(){ $(this).css({ height: 'auto'}); }});
	
	});
	$('#main-slider').bxSlider({
	 	pager: false,
	 	pagerSelector: null
	});
	
	$('#problem-slider').bxSlider({
	 	controls: false,
	 	pager: true,
		pagerType: 'full'
	});
	
	$("#subscribe").fancybox({
		'transitionIn'	:	'elastic',
		'transitionOut'	:	'elastic'
	});
	
});

