// Content Fixes and Interactions

(function( $ ) {
	$.extend({
		init: function() {
		
			$(window).resize (function() {
			});

			$(window).load(function(){
				
			});			
		}
	});
	
} )(jQuery);

jQuery( function( $ ) {
	$.init(); // Inits content fixes
} );