$(document).ready(function(){
    
    $('#carousel').cycle({
    speed:  800,
    timeout: 5000,
    next:   '#next', 
    prev:   '#prev',
    pager: 	'#pager',
    pagerEvent: 'mousedown'
	});
	
	$(".gallery-item a").click(
        function(){ 
        	$("#carousel").cycle('next');
        	return false;}
    );

    
    
    $("div.thumb a").hover(
		function () { $(this).next('div').fadeIn('fast') },
		function () { $(this).next('div').fadeOut('fast') }
	);
    
    $(".nextimg").click(
        function(){ 
        	$("#carousel").cycle('next');}
    );
    
    $("#work").click(
        function(){ 
        	$("#menu-field").slideToggle();}
    );
    
    //click on body to close
    $('html').click(function() {
        //alert(1);        // 
        $("#menu-field").hide();
     });
     $('#menu-field').click(function(event){
          event.stopPropagation();
      });


 


    

	
});


