$(document).ready( function() {

	var effects = [
		['#contact-us-structure', 'contactUs.js', 'contactUs.css'],
		['#featured-content', 'featuredContent.js', 'featuredContent.css'],
		['#gallery-hero', 'galleryHero.js', 'galleryHero.css'],
		['.tidy-snippets', 'tidySnippets.js', '']
	];

	var jsDestination = document.getElementsByTagName('head')[0];
	var cssDestination = document.getElementsByTagName('link')[2];

	$.each(effects, function(i, val) {

		if ($(effects[i][0]).length > 0) {

			if (effects[i][2] != '') {
			
				var css  = document.createElement('link');
				css.rel  = 'stylesheet';
				css.type = 'text/css';
				css.href = '/shared/static/styles/effects/' + effects[i][2];
			
				jsDestination.insertBefore(css, cssDestination);
				
			}

			var js  = document.createElement('script');
			js.type = 'text/javascript';
			js.src  = '/shared/static/scripts/effects/' + effects[i][1];
			
			jsDestination.appendChild(js);

		}

	});

});

