
jQuery(document).ready(function(){

	// ANCHOR 
	
	/*jQuery('a[href*=#]').click(function() {
		if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'')
		&& location.hostname == this.hostname) {
		  var $target = jQuery(this.hash);
		  $target = $target.length && $target
		  || jQuery('[name=' + this.hash.slice(1) +']');
		  if ($target.length) {
			var targetOffset = $target.offset().top - 30;
			jQuery('html,body')
			.animate({scrollTop: targetOffset}, 750);
		   return false;
		  }
		}
	});*/
	
	// CAROUSEL TESTIMONIAL
	

	
	// TABLE ZEBRA
	
	jQuery("#tab_main.zebra .tab_content table tr:nth-child(odd)").addClass("odd");
	
		
	// CURRENT YEAR FOOTER
	
	jQuery("#year").text( (new Date).getFullYear() );
	
});






