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

}


	
	Behaviour.register(myrules);
	

