
// 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/websites/includes/1.php';
		getContent(img)
	},
	
	'a#thumb-2' : function(element){ 
		var img = '/design-portfolio/websites/includes/2.php';
		getContent(img)
	},
	
	'a#thumb-3' : function(element){ 
		var img = '/design-portfolio/websites/includes/3.php';
		getContent(img)
	},
	
	'a#thumb-4' : function(element){ 
		var img = '/design-portfolio/websites/includes/4.php';
		getContent(img)
	},
	
	'a#thumb-5' : function(element){ 
		var img = '/design-portfolio/websites/includes/5.php';
		getContent(img)
	},
	
	'a#thumb-6' : function(element){ 
		var img = '/design-portfolio/websites/includes/6.php';
		getContent(img)
	},
	
	'a#thumb-7' : function(element){ 
		var img = '/design-portfolio/websites/includes/7.php';
		getContent(img)
	}

}


	
	Behaviour.register(myrules);
	

