﻿function HighlightItem(el) {
	
}
$(document).ready(function() {
	$(".tracking-panel").each(function() {
		$(this).effect('bounce', {}, 250);

		$(this).children(".tracking-panel-header")
        .bind('drag', function(event) {
        	$(this).parent(".tracking-panel").css({
        		top: event.offsetY,
        		left: event.offsetX
        	});
        });


	});
});

