( function ( $ ) {

	$.extend ( {
		
		btn_behav : function ()
		{
			
			$( ".BtnLarge" ).hover(
				
				function() {
					
					$( this ).animate(
						{
							opacity : 1
						},
						{
							duration : 300,
							easing : "easeOutCubic"
						}
					);
					
				},
				function() {
					
					$( this ).animate(
						{
							opacity : 0
						},
						{
							duration : 300,
							easing : "easeOutCubic"
						}
					);
					
				}
			);
			
		}
		
	} );

} )( jQuery );
