/*
Labels / Tagging
labels.1.0.js
October 2010
By Andries Reitsma

*/
(function($){

	//Resize image on ready or resize
	$.fn.labels = function() {
		
	};
	
	//Adjust image size
	$.fn.labels_pos = function() {
		
		var scaleFactor = $.fn.supersized.scaleFactor;
		
		$('.label').each(function(index) {
			$(this).css({
    				'top': (Math.round ($(this).attr("top") * scaleFactor)) + "px",
            		'left': (Math.round ($(this).attr("left") * scaleFactor)) + "px",
            		'z-index': 99999,
            		'position': "absolute"
            		});
  		});
		
		return true;	
	};
	
	
})(jQuery);	
