
// /assets/scripts/index.js

$(document).ready(function() {	
 
	// Focus
	$('.design').click (
		function ()
		{
			document.location.href = '/packs/';
		}	
	);

	$('.content').click (
		function ()
		{
			document.location.href = '/services/referencement/';
		}	
	);

	$('.tailored').click (
		function ()
		{
			document.location.href = '/packs/surmesure/';
		}	
	);

	$('.growth').click (
		function ()
		{
			document.location.href = '/services/relationclient/';
		}	
	);

	// Packs
	$('.hosting').click (
		function ()
		{
			document.location.href = '/packs/hebergement/';
		}	
	);

	$('.startup').click (
		function ()
		{
			document.location.href = '/packs/startup/';
		}	
	);

	$('.frontpage').click (
		function ()
		{
			document.location.href = '/packs/presentation/';
		}	
	);

	$('.store').click (
		function ()
		{
			document.location.href = '/packs/ecommerce/';
		}	
	);

	$('.bespoke').click (
		function ()
		{
			document.location.href = '/packs/surmesure/';
		}	
	);

});