// JavaScript Document
	 
jQuery(document).ready(function() {
		
	/* Footer Menu Hover */
	jQuery(function($){
			
	  $('.page-item-30').hover(function() {	
		  $('.children',this).fadeIn(500, function() {});	  	
		}, function() {
		  $('.children',this).fadeOut(500, function() {});	
		});
	  
	 });
	 
	 	
	/* Services Click Disable */
	jQuery(function($){
			
	  $('.page-item-30 > a').click(function() {
		 	return false; 
	  	});
	  
	  		  
	 });
	 
	 /* Client List Decoration */
	 jQuery(function($){
		 
	 	$('.client-list li:even').addClass ('odd');
     	$('.client-list li:odd').addClass ('even');
	 
	 });
	
});	


$(window).load(function() {

  /* Body Fade */				 
  $('.content-wrapper').fadeIn(1200, function() {});

  /* Thumbs Carousel */	
  jQuery(function($){
			
	  $('.carousel-controls').jcarousel({
		scroll: 9
    });
  });	
  
 /* Gallery Hover */
      // this is not needed here
//    jQuery(function($){
	   
// 	  $('.jcarousel-skin-neat .jcarousel-item').hover(function() {	
// 		$('.cgj_title',this).fadeIn(500, function() { });	  	
// 	  }, function() {
// 		$('.cgj_title',this).fadeOut(500, function() { });	
// 	  });
	  
// 	  $('.jcarousel-skin-neat .jcarousel-item').hover(function() {	
// 		$('.caption',this).fadeIn(500, function() { });	  	
// 	  }, function() {
// 		$('.caption',this).fadeOut(500, function() { });	
// 	  });
   
//    });
  
});
