
// Make sure and remove the ones you do not need
// The last one in the list does not get a comma after the closing bracket

var myrules = {

	'a#thumb-1' : function(element){ 
		var img = '/design-portfolio/identity/includes/1.php';
		getContent(img)
	},
	
	'a#thumb-2' : function(element){ 
		var img = '/design-portfolio/identity/includes/2.php';
		getContent(img)
	},
	
	'a#thumb-3' : function(element){ 
		var img = '/design-portfolio/identity/includes/3.php';
		getContent(img)
	},
	
	'a#thumb-4' : function(element){ 
		var img = '/design-portfolio/identity/includes/4.php';
		getContent(img)
	},
	
	'a#thumb-5' : function(element){ 
		var img = '/design-portfolio/identity/includes/5.php';
		getContent(img)
	},
	
	'a#thumb-6' : function(element){ 
		var img = '/design-portfolio/identity/includes/6.php';
		getContent(img)
	},
	
	'a#thumb-7' : function(element){ 
		var img = '/design-portfolio/identity/includes/7.php';
		getContent(img)
	},
	
	'a#thumb-8' : function(element){ 
		var img = '/design-portfolio/identity/includes/8.php';
		getContent(img)
	}

}


	
	Behaviour.register(myrules);
	

