( function ( $ ) {
	
	$.extend( {
		
		targetScroll : function( speed ) {
			
			$(".TargetBtn").click( function() {
				
				var url = $(this).attr("href");
				
				if(url){
					
					if(url.indexOf("#") != -1 && url.indexOf("#") == 0){
						
						var aParts = url.split("#",2);
						var anchor = $("#[id='"+aParts[1]+"']");
						
						if( aParts[1] == 0 )
						{
							anchor = $("body");
						}
						
						if($(document).height()-anchor.offset().top > $(window).height() || anchor.offset().top > $(window).height()){
							
							$('html, body').animate(
								{
									scrollTop: anchor.offset().top,
									scrollLeft: anchor.offset().left
								},
								{
									duration : speed,
									easing : "easeInOutCubic"
								}
							);
							
						}
						
						return false;
					
					}
					
				}
			
			} );
		
		}
		
	} );
	
} )( jQuery );
