jQuery(document).ready(function() {
	$('#menu li.hide a').toggle(
	    function() {
		    $(this).text('Expand');
		    $('#expand').slideToggle();
		    $('#menu li.hide').toggleClass('expand');
	    }, 
	    function() {
	   		$(this).text('Hide This');
	    	$('#expand').slideToggle();
	    	$('#menu li.hide').toggleClass('expand');
	});
	$(".contact").fancybox({
		'width'				: 660,
		'height'			: 420,
        'autoScale'     	: true,
        'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'type'				: 'iframe',
		'overlayColor'	: '#b2bbc3',
		'overlayOpacity': 0.7
	});
	$(document).ready(function(){	
			$("#slider").easySlider({
				auto: true, 
				continuous: true,
				pause: 8000
			});
	});	
});
